forked from rhysbrettbowen/promise_impl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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
{
"name": "whif",
"version": "1.2.0",
"description": "Promises A+ implementation",
"main": "dist/whif.js",
"directories": {
"test": "test"
},
"devDependencies": {
"expect.js": "^0.3.1",
"grunt": "^1.1.0",
"grunt-cli": "^1.3.2",
"grunt-umd": "^3.0.0",
"jsdoc": "^3.6.3",
"mocha": "~3.4.2",
"promises-aplus-tests": "^2.1.2",
"testling": "^1.7.3"
},
"scripts": {
"build-docs": "jsdoc -c ./jsdoc.conf.js | ./scripts/jsdoc2md.js",
"build": "grunt umd",
"test": "node_modules/.bin/mocha test/*.spec.js",
"testling": "testling -u --port 8000"
},
"testling": {
"harness": "mocha-bdd",
"files": "test/*.spec.js",
"browsers": [
"ie/6"
]
},
"engines": {
"node": ">=8.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/espretto/whif.git"
},
"keywords": [
"promise",
"deferred",
"A+",
"A Plus",
"when",
"asynchronous"
],
"author": "espretto",
"license": "https://github.com/espretto/whif/LICENCE",
"homepage": "https://github.com/espretto/whif#readme",
"bugs": {
"url": "https://github.com/espretto/whif/issues"
}
}