-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "splattercss",
"version": "1.0.2",
"description": "Tiny CSS lib to distribute inline styles",
"main": "build/splattercss.min.js",
"scripts": {
"test": "nyc mocha --ui tdd --require esm",
"build": "npm run build:min && npm run build:unmin",
"build:min": "cross-env NODE_ENV=production rollup --config",
"build:unmin": "cross-env NODE_ENV=development rollup --config --file build/splattercss.js",
"prepublishOnly": "npm test && pkg-ok"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mondial7/splattercss.git"
},
"keywords": [
"polyfill",
"css",
"shadowdom"
],
"author": "Marco Mondini <mmondini@mondspace.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mondial7/splattercss/issues"
},
"homepage": "https://github.com/mondial7/splattercss#readme",
"devDependencies": {
"chai": "^4.1.2",
"cross-env": "^6.0.3",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"esm": "^3.2.25",
"husky": "^3.1.0",
"jsdom": "11.6.1",
"jsdom-global": "3.0.2",
"mocha": "^5.0.0",
"nyc": "^14.1.1",
"pkg-ok": "^2.3.1",
"rollup": "^1.26.2",
"rollup-plugin-license": "^0.12.1",
"rollup-plugin-uglify-es": "0.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run build && git add build/*",
"pre-push": "npm test"
}
},
"dependencies": {},
"publishConfig": { "registry": "https://npm.pkg.github.com/" }
}