-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
94 lines (94 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "can-zone",
"version": "1.1.1",
"description": "Asynchronous render for all frameworks",
"main": "lib/zone.js",
"scripts": {
"preversion": "npm test && npm run build",
"build": "node scripts/build.js",
"document": "bit-docs",
"test:node": "mocha test/test.js && mocha test/test_register_node.js",
"test:browser": "testee test/test.html test/register.html --browsers firefox --reporter Spec",
"test:win": "testee test/test.html --browsers chrome --reporter Spec",
"test:worker": "testee test/test_worker.html --browsers firefox --report Spec",
"test:xss": "mocha test/xss/test.js",
"test": "npm run detect-cycle && npm run test:node && npm run test:browser && npm run test:xss",
"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:pre": "npm version prerelease && npm publish",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"detect-cycle": "detect-cyclic-packages --ignore done-serve"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/canjs/can-zone.git"
},
"keywords": [
"server-side",
"rendering",
"canjs",
"asynchronous",
"rendering"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/canjs/can-zone/issues"
},
"homepage": "https://github.com/canjs/can-zone#readme",
"devDependencies": {
"bit-docs": "0.0.8-0",
"chai": "^4.0.1",
"detect-cyclic-packages": "^1.1.0",
"mocha": "^4.0.0",
"node-fetch-commonjs": "^3.2.4",
"steal": "^2.1.7",
"steal-mocha": "^1.0.0",
"steal-tools": "^2.0.7",
"testee": "^0.10.2"
},
"steal": {
"npmDependencies": [
"steal-mocha",
"mocha",
"chai"
],
"map": {
"./assert": "chai/chai"
},
"meta": {
"chai/chai": {
"format": "global",
"exports": "chai.assert"
}
},
"plugins": [
"chai"
],
"envs": {
"window-development": {
"map": {
"node-fetch-commonjs": "@empty"
}
}
}
},
"bit-docs": {
"dependencies": {
"bit-docs-glob-finder": "^0.0.5",
"bit-docs-dev": "^0.0.3",
"bit-docs-js": "^0.0.3",
"bit-docs-generate-readme": "^0.0.8"
},
"glob": {
"pattern": "**/*.{js,md}",
"ignore": "node_modules/**/*"
},
"readme": {
"apis": "./docs/apis.json"
},
"parent": "can-view-live"
}
}