-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 836 Bytes
/
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": "perfect-classnames",
"version": "0.1.1",
"description": "React classnames made Perfect",
"main": "index.js",
"author": "Spencer Steers <[email protected]> (https://github.com/spencersteers)",
"license": "MIT",
"homepage": "https://github.com/spencersteers/perfect-classnames",
"repository": "github:spencersteers/perfect-classnames",
"bugs": "https://github.com/spencersteers/perfect-classnames/issues",
"keywords": [
"react",
"css",
"classnames"
],
"scripts": {
"test": "tap index.test.js --100",
"precommit": "lint-staged",
"format": "prettier '*.js' --write"
},
"lint-staged": {
"*.{js,md,ts,tsx}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"tap": "^12.1.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3"
}
}