-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 858 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
34
{
"name": "wait-condition",
"version": "1.0.2",
"description": "Resolve a promise when a condition is met",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf ./lib",
"prepublish": "npm run build",
"test": "jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafaeleyng/wait-condition.git"
},
"keywords": [
"promise"
],
"author": "rafaeleyng@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafaeleyng/wait-condition/issues"
},
"homepage": "https://github.com/rafaeleyng/wait-condition#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"jasmine": "2.8.0"
}
}