-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "monocle-js",
"description": "Blocking-like syntax for asynchronous Javascript libraries, using generators. Port of https://github.com/saucelabs/monocle",
"tags": [
"javascript",
"generators",
"yield",
"async",
"sync"
],
"version": "1.0.2",
"author": "jlipps@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/jlipps/monocle-js.git"
},
"bugs": {
"url": "https://github.com/jlipps/monocle-js/issues"
},
"engines": [
"node"
],
"main": "./lib/main.js",
"directories": {
"lib": "./lib"
},
"dependencies": {
"underscore": "~1.4.4",
"harmony-reflect": "~1.1.1"
},
"scripts": {
"test": "./build.sh && mocha --harmony -t 3000 -R spec test/ && mocha -t 3000 -R spec test/",
"testio": "./build.sh && mochaio --harmony-proxies -t 3000 -R spec test/ && mochaio -t 3000 -R spec test/"
},
"devDependencies": {
"mocha": "~1.21.4",
"regenerator": "~0.4.12",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"should": "~4.0.4",
"q": "~1.0.1",
"grunt-mocha-test": "~0.11.0",
"grunt-contrib-jshint": "~0.10.0"
}
}