forked from compulim/event-as-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "event-as-promise",
"version": "1.0.6-0",
"description": "",
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"scripts": {
"build": "babel --out-dir lib --ignore **/*.spec.js,**/*.test.js --source-maps inline src/",
"clean": "rimraf lib",
"test": "jest",
"versionCommit": "npx gulp-cli version-commit",
"watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/compulim/event-as-promise.git"
},
"keywords": [
"event",
"promise",
"promisify",
"p-event"
],
"author": "William Wong <[email protected]> (http://compulim.info/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/compulim/event-as-promise/issues"
},
"homepage": "https://github.com/compulim/event-as-promise#readme",
"jest": {
"collectCoverage": true,
"testRegex": "(/examples/.*|/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-add-module-exports": "^1.0.0",
"get-port": "^3.2.0",
"has-resolved": "^1.0.1",
"jest": "^23.6.0",
"node-dev": "^3.1.3",
"node-fetch": "^2.1.2",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"rimraf": "^2.6.2"
}
}