-
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) · 1010 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 1010 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": "@maxfield/node-casl2-core",
"version": "1.2.0",
"description": "CASL2 core 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/lodash": "^4.14.53",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"coveralls": "^2.12.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"mocha": "^2.3.3",
"remap-istanbul": "^0.9.1",
"typescript": "^2.2.1"
},
"dependencies": {
"@maxfield/node-casl2-comet2-core-common": "^1.0.0"
}
}