-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 945 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
{
"name": "tramway-core-connection",
"version": "2.2.0",
"description": "A simple connection library for the Tramway framework",
"author": "Julian Wolfe",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tramwayjs/connection.git"
},
"bugs": {
"url": "https://github.com/tramwayjs/connection/labels/bug"
},
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "./node_modules/.bin/babel src -d dist",
"test": "./node_modules/.bin/babel src -d dist && mocha tests"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-flow-strip-types": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"mocha": "^7.0.0",
"tramway": "^0.5.1",
"tramway-core-testsuite": "^1.2.0"
},
"dependencies": {
"tramway-core": "^1.0.0"
}
}