-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
39 lines (39 loc) · 954 Bytes
/
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
{
"name": "chiasm",
"version": "0.2.3",
"description": "A browser based environment for interactive data visualizations.",
"main": "src/index.js",
"scripts": {
"pretest": "browserify -t browserify-shim -o chiasm.js -s Chiasm src/index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/chiasm-project/chiasm.git"
},
"keywords": [
"data",
"visualization"
],
"author": "Curran Kelleher",
"license": "MIT",
"bugs": {
"url": "https://github.com/chiasm-project/chiasm/issues"
},
"homepage": "https://github.com/chiasm-project/chiasm",
"dependencies": {
"es6-promise": "^3.0.2",
"lodash": "^3.10.1",
"model-js": "^0.2.4"
},
"devDependencies": {
"browserify-shim": "^3.8.10",
"browserify-versionify": "^1.0.6",
"mocha": "^2.3.3",
"chai": "^3.3.0"
},
"browserify-shim": {
"lodash": "global:_",
"model-js": "global:Model"
}
}