-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
51
52
{
"name": "can-derive",
"version": "0.0.16",
"description": "Derive a list/map from another via live binding",
"main": "can-derive.js",
"author": "Chris Gomez <[email protected]>",
"license": "MIT",
"keywords": [
"canjs",
"can",
"observable",
"bind"
],
"repository": {
"type": "git",
"url": "git://github.com/canjs/can-derive.git"
},
"dependencies": {
"can": "^2.3.0",
"can-binarytree": "^0.0"
},
"devDependencies": {
"benchmark": "1.0.0",
"jshint": "2.7.0",
"serve": "1.4.0",
"steal": "0.13.0",
"steal-qunit": "0.0.2",
"steal-tools": "0.13.0",
"system-npm": "0.3.0",
"testee": "^0.2.0"
},
"system": {
"meta": {
"benchmark": {
"format": "cjs"
}
}
},
"scripts": {
"start": "serve -p 8080",
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"jshint": "jshint list/. can-derive.js --config",
"testee": "testee list/test.html --browsers phantom",
"test": "npm run jshint && npm run testee",
"build": "node build.js"
}
}