-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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": "reuse-promise",
"version": "2.0.0",
"description": "Reuse the same promise until resolved when retrieving it from a function",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"watch:test": "npm test -- -w",
"build:clean": "rimraf lib dist",
"build:js": "babel -d lib/ src/",
"build": "npm run build:clean && npm run build:js",
"prepublish": "npm run build",
"test:cov": "babel-node ./node_modules/isparta/bin/isparta cover ./node_modules/mocha/bin/_mocha -- --recursive",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elado/reuse-promise.git"
},
"keywords": [
"promise",
"cache",
"memoize"
],
"author": "Elad Ossadon <[email protected]> (http://github.com/elado)",
"license": "MIT",
"bugs": {
"url": "https://github.com/elado/reuse-promise/issues"
},
"homepage": "https://github.com/elado/reuse-promise#readme",
"devDependencies": {
"assert": "^1.3.0",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.7.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"watch": "^0.17.1"
},
"dependencies": {
"babel-runtime": "^6.6.1"
}
}