forked from jaystack/odata-v4-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 2.06 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
44
45
46
47
48
{
"name": "@modusign/odata-v4-parser",
"version": "1.0.1",
"description": "OData v4 Parser",
"main": "lib/parser.js",
"repository": "https://github.com/modusign/odata-v4-parser",
"bugs": "https://github.com/modusign/odata-v4-parser/issues",
"homepage": "https://github.com/modusign/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": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"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",
"semantic-release": "^17.4.4",
"semantic-release-slack-bot": "^2.1.1",
"tslint": "^5.10.0",
"typedoc": "^0.11.1",
"typedoc-default-themes": "^0.5.0",
"typedoc-plugin-external-module-name": "^1.1.1",
"typescript": "^3.9.10"
},
"typings": "lib/parser.d.ts"
}