-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 KB
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
{
"name": "d3-interpolate-husl",
"version": "0.1.2",
"description": "",
"main": "./lib",
"scripts": {
"compile": "npm run compile:npm && npm run compile:browser",
"compile:npm": "./node_modules/.bin/babel -d lib/ src/ && rm -r ./lib/__tests__",
"compile:browser": "npm run build:browser && npm run minify:browser",
"build:browser": "./node_modules/.bin/browserify src/ -o d3-interpolate-husl.js",
"minify:browser": "./node_modules/.bin/uglifyjs d3-interpolate-husl.js -o d3-interpolate-husl.min.js",
"prepublish": "npm run compile:npm",
"test": "node --harmony ./node_modules/.bin/jest --verbose"
},
"browserify": {
"transform": [
[
"babelify"
]
]
},
"author": "Yin Shanyang <me@yinshanyang.com> (http://yinshanyang.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yinshanyang/d3-interpolate-husl.git"
},
"dependencies": {
"husl": "^5.0.3"
},
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "^5.5.8",
"babel-eslint": "^3.1.15",
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"eslint": "^0.23.0",
"jest-cli": "^0.4.13",
"uglify": "^0.1.5"
},
"jest": {
"rootDir": "src",
"scriptPreprocessor": "<rootDir>../tools/preprocessor.js"
}
}