forked from kobiburnley/ts-trait
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 692 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 692 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
30
{
"name": "ts-trait",
"version": "4.1.0",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"dependencies": {
"tslib": "^1.9.1"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.40",
"@types/node": "^8.0.9",
"chai": "^3.5.0",
"mocha": "^5.2.0",
"ts-node": "^3.2.0",
"typescript": "^2.8.3"
},
"scripts": {
"test": "mocha test/**/*.ts --require ts-node/register",
"build": "rm -rf build && npm run compile",
"compile": "tsc -p tsconfig.production.json"
},
"repository": "https://github.com/kobiburnley/ts-trait",
"author": "",
"license": "ISC"
}