-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 981 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
33
34
35
{
"name": "a11y-color",
"description": "Color evaluation and manipulation tools",
"version": "0.0.8",
"author": "Jesse Beach <[email protected]>",
"license": "Apache License 2.0",
"repository": {
"type": "git",
"url": "git://github.com/A11yance/a11y-color.git"
},
"bugs": "http://github.com/A11yance/a11y-color/issues",
"dependencies": {
"core-js": "^0.9.13"
},
"peerDependencies": {},
"optionalDependencies": {},
"devDependencies": {
"babel": "^5.4.7",
"chai": "^3.2.0",
"gulp": "^3.9.1",
"gulp-jscs": "^2.0.0",
"gulp-jsdoc": "^0.1.4",
"gulp-jshint": "^1.11.2",
"gulp-rename": "^1.2.2",
"mocha": "^2.2.1",
"should": "^5.0.1"
},
"scripts": {
"compile": "gulp compile; babel -e -d lib/ src/; gulp docs",
"prepublish": "npm run compile",
"postpublish": "git commit -am \"Post publish docs rev\"",
"test": "gulp; mocha --recursive --require babelhook"
},
"main": "lib/index.js"
}