-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 899 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
{
"name": "@maxfield/node-casl2-comet2-core-common",
"version": "1.0.1",
"description": "CASL2/COMET2 core common library",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": "Maxfield Walker",
"license": "MIT",
"scripts": {
"compile": "node ./node_modules/typescript/bin/tsc -p .",
"watch": "node ./node_modules/typescript/bin/tsc -w -p .",
"test": "npm run compile && mocha",
"test:coverage": "npm run compile && istanbul cover ./node_modules/mocha/bin/_mocha -- --no-timeouts && remap-istanbul --input ./coverage/coverage.json --output ./coverage/lcov.ts.info --type lcovonly",
"prepublish": "npm run compile"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"coveralls": "^2.12.0",
"istanbul": "^0.4.5",
"mocha": "^2.3.3",
"remap-istanbul": "^0.9.1",
"typescript": "^2.2.1"
}
}