-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.63 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-reflect",
"version": "1.19.2",
"description": "reflection on unknown data types",
"homepage": "http://canjs.com",
"repository": {
"type": "git",
"url": "git://github.com/canjs/can-reflect.git"
},
"author": {
"name": "DoneJS core team",
"email": "[email protected]",
"url": "http://donejs.com"
},
"scripts": {
"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",
"testee": "testee test.html --browsers firefox",
"test": "npm run detect-cycle && npm run jshint && npm run testee",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"jshint": "jshint ./*.js reflections/**/*.js types/*.js --config",
"build": "node build.js",
"http-server": "http-server -p 3000 --silent",
"ci": "npm run build && npm run test && node test-saucelabs.js",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"main": "can-reflect",
"keywords": [
"donejs"
],
"dependencies": {
"can-namespace": "^1.0.0",
"can-symbol": "^1.7.0"
},
"devDependencies": {
"detect-cyclic-packages": "^1.1.0",
"http-server": "^0.11.0",
"jshint": "^2.9.1",
"steal": "^1.0.5",
"steal-qunit": "^2.0.0",
"steal-tools": "^1.0.1",
"test-saucelabs": "0.0.6",
"testee": "^0.9.0"
}
}