-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.44 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
{
"name": "polylinear-scale",
"version": "1.1.6",
"description": "Create piecewise linear scales à la d3",
"main": "src/index.js",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2015-rollup": "^3.0.0",
"chai": "3.5.0",
"d3": "^4.5.0",
"eslint": "3.4.0",
"eslint-config-standard": "6.0.0",
"eslint-plugin-promise": "2.0.1",
"eslint-plugin-standard": "2.0.0",
"mocha": "3.0.2",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"uglify-js": "^2.7.5"
},
"scripts": {
"lint": "eslint src/index.js",
"rollup": "node rollup",
"uglify": "uglifyjs dist/polylinear-scale.js --output dist/polylinear-scale.min.js",
"build": "npm run lint && npm run test && npm run rollup && npm run uglify",
"test": "mocha --compilers js:babel-core/register test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elcontraption/polylinear-scale.git"
},
"keywords": [
"polylinear",
"linear",
"scale",
"piecewise",
"clamp",
"domain",
"range"
],
"author": "Darin Reid <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/elcontraption/polylinear-scale/issues"
},
"homepage": "https://github.com/elcontraption/polylinear-scale#readme"
}