-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 939 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-component",
"version": "0.2.3",
"description": "A common base for Chiasm plugins.",
"main": "index.js",
"scripts": {
"pretest": "browserify -g browserify-shim -o chiasm-component.js -s ChiasmComponent index.js",
"test": "mocha",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/chiasm-project/chiasm-component.git"
},
"keywords": [
"chiasm",
"component",
"model",
"plugin"
],
"author": "Curran Kelleher",
"license": "MIT",
"bugs": {
"url": "https://github.com/chiasm-project/chiasm-component/issues"
},
"homepage": "https://github.com/chiasm-project/chiasm-component",
"devDependencies": {
"browserify": "^11.2.0",
"browserify-shim": "^3.8.10",
"chai": "^3.3.0",
"mocha": "^2.3.3"
},
"browserify-shim": {
"model-js": "global:Model"
},
"dependencies": {
"model-js": "^0.2.4"
}
}