-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 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
46
47
48
49
50
51
{
"name": "plusjs",
"version": "0.0.2",
"description": "reusable library for data visualizations",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/Dmitra/plusjs.git"
},
"keywords": [
"d3",
"chart",
"data visualisation"
],
"author": "Dmitra",
"license": "MIT",
"scripts": {
"build-debug": "browserify src/index.js -d -s Vis > plusjs.js",
"build-min": "browserify src/index.js -s Vis | uglifyjs -c > plusjs.min.js",
"build": "npm run build-debug && npm run build-min",
"pretest": "jshint --exclude-path .gitignore",
"test": "mocha",
"start": "static",
"start-dev": "NODE_ENV=development npm run watch",
"watch": "npm run watch-server & npm run watch-css",
"watch-server": "nodemon --ignore public/ --ignore client/ --ignore test/ index.js",
"watch-js": "watchify src/index.js -d -s Vis -o plusjs.js -v",
"build-css": "bash ./bin/build-css",
"watch-css": "nodemon -e scss -x \"npm run build-css\""
},
"dependencies": {
"d3": "latest",
"lodash": "latest",
"d3-transform": "<=1.0.3"
},
"devDependencies": {
"node-static": "latest",
"browserify": "<=8.1.3",
"uglify-js": "latest",
"watchify": "latest",
"nodemon": "latest",
"node-sass": "latest"
},
"bugs": {
"url": "https://github.com/Dmitra/pLusjs/issues"
},
"homepage": "https://github.com/Dmitra/plusjs",
"directories": {
"example": "example"
}
}