-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 1.02 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
{
"name": "strclass",
"version": "2.0.9",
"description": "A tiny library to apply CSS classes as strings from objects",
"main": "dist/strclass.min.js",
"scripts": {
"test": "nyc --report-dir docs node test.js",
"coverage": "nyc --report-dir docs --reporter=lcov node test.js",
"build": "minify --output dist/strclass.min.js src/index.js",
"push": "git push origin master --tags",
"size": "node -e \"process.stdout.write('gzip size: ')\" && gzip-size dist/strclass.min.js",
"commit:build": "git add . && git commit --allow-empty -S -m 'Minifying'",
"preversion": "yarn test && yarn build && yarn commit:build",
"postversion": "npm publish && yarn push"
},
"devDependencies": {
"coveralls": "^2.11.16",
"gzip-size-cli": "^2.0.0",
"minifier": "^0.8.1",
"nyc": "^10.1.2"
},
"repository": "[email protected]:fdaciuk/strclass.git",
"author": "Fernando Daciuk (@fdaciuk)",
"license": "MIT",
"keywords": [
"react",
"css",
"classnames",
"classname",
"strclass"
]
}