-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.79 KB
/
package.json
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
{
"name": "glamor-helpers",
"version": "0.2.3",
"description": "A series of glamor helpers to make your life easier!",
"jsnext:main": "dist/glamor-helpers.es.js",
"module": "dist/glamor-helpers.es.js",
"main": "dist/glamor-helpers.js",
"umd:main": "dist/glamor-helpers.umd.js",
"files": [
"dist"
],
"repository": "[email protected]:peterpme/glamor-helpers.git",
"author": "Peter Piekarczyk <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm-run-all clean -p rollup -p minify:* -s size",
"dev": "rollup -c -w",
"clean": "rimraf dist",
"rollup": "rollup -c",
"minify:cjs": "uglifyjs $npm_package_main -cm toplevel -o $npm_package_main -p relative --in-source-map ${npm_package_main}.map --source-map ${npm_package_main}.map",
"minify:umd": "uglifyjs $npm_package_umd_main -cm -o $npm_package_umd_main -p relative --in-source-map ${npm_package_umd_main}.map --source-map ${npm_package_umd_main}.map",
"size": "echo \"Gzipped Size: $(strip-json-comments --no-whitespace $npm_package_main | gzip-size)\"",
"release": "npm run test && npm run build && npm version patch && npm publish && git push --tags"
},
"eslintConfig": {
"extends": "standard",
"parser": "babel-eslint"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist/"
]
},
"peerDependencies": {
"glamor": "^2.20.25"
},
"devDependencies": {
"gzip-size-cli": "^2.0.0",
"npm-run-all": "^4.0.2",
"pretty-bytes-cli": "^2.0.0",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"standard": "^10.0.2",
"strip-json-comments-cli": "^1.0.1",
"uglify-js": "^2.8.22"
}
}