-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 929 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
{
"name": "tramway-core-events",
"version": "0.1.0",
"description": "A pub-sub events manager for the Tramway framework",
"author": "Julian Wolfe",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://gitlab.com/tramwayjs/tramway-core-events.git"
},
"bugs": {
"url": "https://gitlab.com/tramwayjs/tramway-core-events/issues?label_name%5B%5D=bug"
},
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run compile",
"compile": "./node_modules/.bin/tramway build",
"test": "npm run compile && mocha tests"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015-node6": "^0.4.0",
"mocha": "^3.2.0",
"tramway": "^0.3.0",
"tramway-core-testsuite": "^1.2.0"
},
"dependencies": {}
}