-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 865 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
36
37
38
39
40
41
42
{
"name": "color-palette-generator",
"version": "1.0.4",
"description": "",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "yarn run lint && yarn run build && ava",
"build": "BABEL_ENV=production babel lib --out-dir dist",
"postinstall": "npm run build"
},
"author": "Tibor Vukovic <m@tib.im>",
"license": "ISC",
"dependencies": {
"ava": "^1.0.1",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"color": "^3.0.0",
"standard": "^11.0.0"
},
"ava": {
"files": [
"test/**/*.js"
],
"tap": true
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"files": [
"dist/",
"./index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/tiborv/color-palette-generator.git"
}
}