-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.66 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": "@urban/is-promise",
"version": "0.1.0",
"description": "Tests whether an Object is a promise/A+ promise.",
"author": "Urban Faubion <[email protected]> (http://urbanfaubion.com)",
"license": "MIT",
"keywords": [
"ES6",
"ES7",
"ES2015",
"ES2016"
],
"bugs": {
"url": "https://github.com/urban/is-promise/issues"
},
"homepage": "https://github.com/urban/is-promise",
"repository": {
"type": "git",
"url": "https://github.com/urban/is-promise.git"
},
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build:lib": "NODE_ENV=production babel src --out-dir lib",
"build:watch": "babel src --out-dir lib --watch",
"build": "rimraf lib && npm run build:lib",
"check": "npm run test:lint && npm test && npm run test:audit && npm outdated --depth 0",
"prepublish": "npm run build",
"test:audit": "nsp check",
"test:cov": "rimraf coverage && NODE_ENV=test babel-node $(npm bin)/isparta cover ./test/*-test.js",
"test:lint": "standard",
"test:typecheck": "flow check ./src",
"test": "NODE_ENV=test babel-node $(npm bin)/tape test/*-test.js | tap-spec",
"preversion": "npm run check",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^4.1.3",
"babel-plugin-transform-es2015-modules-commonjs": "6.2.0",
"babel-plugin-transform-flow-strip-types": "^6.1.18",
"isparta": "^4.0.0",
"nsp": "^2.0.2",
"rimraf": "^2.4.3",
"standard": "^5.3.1",
"tap-spec": "^4.1.0",
"tape": "^4.2.1"
},
"standard": {
"parser": "babel-eslint"
}
}