-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "yield-yield",
"version": "1.3.1",
"description": "Sequential writing of asynchronous code",
"main": "index.js",
"scripts": {
"dev:link": "cd node_modules && rm -rf yield-yield && ln -s ../ yield-yield",
"pretest": "npm run dev:link",
"test": "mocha --harmony -r mocha.vars.js",
"test:karma": "karma start",
"test:karma-local": "NODE_ENV=development karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/nemisj/yield-yield.git"
},
"keywords": [
"async",
"yield",
"generators",
"callback"
],
"author": "Maks Nemisj <[email protected]> (http://nemisj.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nemisj/twice-yield/issues"
},
"homepage": "https://github.com/nemisj/twice-yield",
"devDependencies": {
"async": "^0.9.0",
"babel-core": "^5.1.11",
"babel-runtime": "^5.1.11",
"chai": "^3.5.0",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-sauce-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.3",
"mocha": "^3.0.2",
"promise": "^6.1.0",
"q": "^1.2.0",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
}
}