This repository was archived by the owner on Mar 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 KB
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
54
55
56
{
"name": "empty-promise",
"version": "1.2.0",
"description": "externally exposed resolve/reject api for native promises",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run test:fast",
"build": "npm run clean && babel ./src --out-dir ./lib --copy-files",
"clean": "rimraf ./lib",
"lint": "eslint src/ test/",
"pretest": "npm run lint",
"test:fast": "babel-tape-runner test/*.test.js",
"test:watch": "nodemon --exec npm -- run --silent test:fast || true",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockai/empty-promise.git"
},
"keywords": [
"promise",
"es6",
"wait",
"resolve",
"reject"
],
"author": "Oli Lalonde <olalonde@gmail.com> (https://syskall.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/blockai/empty-promise/issues"
},
"homepage": "https://github.com/blockai/empty-promise#readme",
"engines": {
"node": ">=6"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-blockai": "^1.0.0",
"babel-tape-runner": "^2.0.1",
"blue-tape": "^1.0.0",
"cz-conventional-changelog": "^1.2.0",
"eslint-config-blockai": "^1.0.1",
"nodemon": "^1.10.2",
"rimraf": "^2.5.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}