-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "thenable-events",
"version": "2.0.4",
"description": "Powerful event-based system that introduces thenable objects to enable promise-like event handling",
"main": "./lib/index.js",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2017": "^6.18.0"
},
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "rm -rf lib && yarn build",
"test": "yarn build && mocha lib/tests"
},
"repository": {
"type": "git",
"url": "https://github.com/Swivelgames/thenable-events.git"
},
"keywords": [
"then",
"thenable",
"promise",
"event",
"emitter",
"dispatcher",
"when",
"once",
"promises/a+"
],
"author": "Joseph Dalrymple <[email protected]>",
"license": "AGPLv3",
"bugs": "https://github.com/Swivelgames/thenable-events/issues",
"homepage": "https://github.com/Swivelgames/thenable-events#readme"
}