-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "vow",
"version": "0.4.20",
"description": "DOM Promise and Promises/A+ implementation for Node.js and browsers",
"homepage": "http://dfilatov.github.io/vow/",
"keywords": [
"nodejs",
"browser",
"async",
"promise",
"dom",
"a+"
],
"author": "Dmitry Filatov <[email protected]>",
"contributors": [
{
"name": "Dmitry Filatov",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "http://github.com/dfilatov/vow.git"
},
"dependencies": {},
"devDependencies": {
"nodeunit": "0.11.3",
"istanbul": "0.4.5",
"terser": "4.0.2",
"promises-aplus-tests": "2.1.0",
"marked": "0.6.3",
"jspath": "0.2.11",
"yate": "0.0.65",
"highlight.js": "7.5.0",
"bem-jsd": "1.3.1"
},
"license": "MIT",
"main": "lib/vow",
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js test test/utils/runner.js"
},
"enb": {
"sources": [
"lib/vow.js"
]
}
}