-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 857 Bytes
/
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
{
"name": "@singcl/promise",
"version": "0.2.1",
"description": "A promise Promise/A+",
"main": "dist/index.js",
"scripts": {
"test": "promises-aplus-tests ./test/promise.spec.js",
"lint": "eslint --fix src/index.js",
"build": "gulp && cross-env NODE_ENV=production npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/singcl/promise.git"
},
"keywords": [
"promise"
],
"author": "singcl",
"license": "MIT",
"bugs": {
"url": "https://github.com/singcl/promise/issues"
},
"homepage": "https://github.com/singcl/promise#readme",
"devDependencies": {
"cross-env": "^5.1.4",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"gulp": "^3.9.1",
"gulp-uglify": "^3.0.0",
"promises-aplus-tests": "^2.1.2"
}
}