-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
72 lines (72 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "gradstop",
"version": "2.2.3",
"description": "JavaScript micro library to generate monotone color schemes and equidistant gradient stops",
"main": "index.js",
"files": [
"dist",
"index.js",
"README.md",
"gradient strip.png"
],
"keywords": [
"gradstop",
"gradient",
"stops",
"color",
"colors",
"hex",
"rgb",
"hsl"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "babel src -d dist",
"postbuild": "browserify index.js --standalone gradstop > gradstopUMD.js",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Siddharth11/gradstop.git"
},
"author": "Siddharth <'[email protected]'> (http://siddharthparmar.in/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Siddharth11/gradstop/issues"
},
"homepage": "https://github.com/Siddharth11/gradstop#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"rimraf": "^2.6.2"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env",
"stage-2"
]
}
]
]
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
}
}
}