-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 896 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 896 Bytes
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
{
"name": "tramway-core",
"version": "2.2.2",
"description": "A simple framework extension to an Express application offering a variety of common abstractions",
"author": "Julian Wolfe",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://gitlab.com/tramwayjs/tramway-core.git"
},
"bugs": {
"url": "https://gitlab.com/tramwayjs/tramway-core/issues?label_name%5B%5D=bug"
},
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "tramway build",
"test": "tramway build && mocha tests"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-flow-strip-types": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"mocha": "^6.2.2",
"tramway": "^0.5.1",
"tramway-core-testsuite": "^1.2.0"
}
}