forked from vadimg/js_bintrees
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "can-binarytree",
"version": "0.0.9",
"description": "Observable binary tree data structures for CanJS",
"main": "can-binarytree.js",
"author": "Chris Gomez <[email protected]>",
"license": "MIT",
"keywords": [
"black",
"binary",
"canjs",
"can",
"list",
"red",
"red-black",
"redblack",
"tree"
],
"repository": {
"type": "git",
"url": "git://github.com/akagomez/can-binarytree.git"
},
"dependencies": {
"can": "^2.3.0"
},
"devDependencies": {
"jshint": "^2.7.0",
"serve": "1.4.0",
"steal": "0.10.1",
"steal-tools": "0.11.0-pre.9",
"steal-qunit": "0.0.2",
"system-npm": "0.3.0",
"testee": "^0.2.0",
"underscore": "1.3.1"
},
"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 rbtreelist/. treebase/. test/. --config",
"testee": "testee test/index.html --browsers phantom",
"test": "npm run jshint && npm run testee",
"build": "node build.js"
}
}