-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
43 lines (43 loc) · 1.68 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "odata-v4-parser",
"version": "0.1.29",
"description": "OData v4 Parser",
"main": "lib/parser.js",
"repository": {
"type": "git",
"url": "git://github.com/jaystack/odata-v4-parser.git"
},
"bugs": {
"url": "https://github.com/jaystack/odata-v4-parser/issues"
},
"homepage": "https://github.com/jaystack/odata-v4-parser#readme",
"author": "JayStack",
"license": "MIT",
"scripts": {
"prebuild": "npm run lint",
"build": "tsc",
"build:w": "tsc -w",
"lint": "tslint src/**/*.ts --fix",
"tdd": "concurrently \"tsc -w\" \"mocha -w\"",
"coverage": "rimraf coverage && tsc && node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha test/**/*.spec.js --config=.istanbul.yaml -x config/**/*.js && node node_modules/remap-istanbul/bin/remap-istanbul -i coverage/coverage.json -o coverage/html-report -t html",
"typedoc": "typedoc --name \"JayStack OData v4 Parser\" --excludeExternals --excludeNotExported --hideGenerator --excludeExternals --excludePrivate --out docs src",
"pretest": "npm run build",
"test": "rimraf report && mocha test/**/*.spec.js --reporter mochawesome --reporter-options reportDir=report,reportFilename=index,reportTitle=\"JayStack OData V4 Parser\"",
"prepublish": "npm run test"
},
"devDependencies": {
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mochawesome": "^3.0.2",
"remap-istanbul": "^0.11.1",
"rimraf": "^2.6.2",
"tslint": "^5.10.0",
"typedoc": "^0.11.1",
"typedoc-default-themes": "^0.5.0",
"typedoc-plugin-external-module-name": "^1.1.1",
"typescript": "^2.9.1"
},
"typings": "lib/parser.d.ts"
}