-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "es6-deferred-promise",
"version": "1.0.1",
"description": "A deferred promise implementation on top of Promises/A+ spec.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint ./*.ts",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"prebuild:test": "npm run lint",
"build:test": "tsc -p tsconfig.test.json",
"pretest": "npm run build:test",
"test": "mocha ./.tmp/*.spec.js",
"posttest": "rm -rf ./.tmp",
"prepublish": "npm run build"
},
"keywords": [
"promise",
"deferred",
"native",
"es6",
"es2015",
"a+",
"aplus",
"defer"
],
"author": "Michael de Wit <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mjwwit/es6-deferred-promise.git"
},
"license": "ISC",
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"@types/sinon": "^2.2.1",
"@types/sinon-chai": "^2.7.27",
"chai": "^3.5.0",
"mocha": "^3.3.0",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0",
"tslint": "^5.2.0",
"typescript": "^2.3.2"
},
"engines": {
"node": ">=4"
}
}