-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "hex-color-pal",
"version": "1.0.0",
"description": "Array of hex color palettes from various sources",
"license": "MIT",
"repository": {
"url": "https://github.com/tiaanduplessis/hex-color-pal",
"type": "git"
},
"homepage": "https://github.com/tiaanduplessis/hex-color-pal",
"bugs": "https://github.com/tiaanduplessis/hex-color-pal",
"main": "dist/hex-color-pal.js",
"browser": "dist/hex-color-pal.js",
"jsnext:main": "dist/hex-color-pal.es.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "standard 'src/**/*.js'",
"lint:fix": "npm run lint -- --fix",
"build": "bili --format es --format umd --compress",
"start": "npm run test",
"pretest": "npm run format && npm run lint:fix",
"format": "prettier --print-width 100 --semi false --single-quote --write 'src/**/*.js'",
"precommit": "npm test",
"prepublish": "npm run build",
"release": "npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push --tags && npm publish"
},
"author": "tiaanduplessis <tiaanduplessis@hotmail.com>",
"babel": {
"presets": [
[
"env"
]
]
},
"devDependencies": {
"jest": "^20.0.1",
"standard": "^10.0.2",
"babel-preset-env": "^1.4.0",
"bili": "^0.15.0",
"husky": "^0.13.3",
"prettier": "~1.3.1"
}
}