-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "pigment",
"description": "Color information, conversion and manipulation library",
"main": "color.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "nyc ava",
"lint": "eslint .",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"pigment": "bin/pigment.js"
},
"repository": {
"type": "git",
"url": "https://github.com/satya164/pigment.git"
},
"keywords": [
"color",
"colour",
"css"
],
"author": "Satyajit Sahoo <satyajit.happy@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/satya164/pigment/issues"
},
"homepage": "https://github.com/satya164/pigment",
"devDependencies": {
"ava": "^0.15.2",
"coveralls": "^2.11.9",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^2.11.1",
"eslint-plugin-ava": "^2.5.0",
"nyc": "^6.4.4",
"semantic-release": "^4.3.5"
},
"ava": {
"files": [
"**/*.test.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}