forked from seamapi/node-odata-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "@licheng5625/odata-parser",
"version": "1.0.3",
"description": "OData query string parser",
"main": "lib/index.js",
"scripts": {
"test": "npm run clean && npm run build && mocha -R spec",
"clean": "rm -rf lib/odata-parser.js",
"build": "pegjs src/odata.pegjs lib/odata-parser.js"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"mocha": "2.1.0",
"pegjs": "0.7.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/licheng5625/node-odata-parser.git"
},
"keywords": [
"odata",
"parser"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"types": "types/index.d.ts",
"author": "auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/licheng5625/node-odata-parser/issues"
},
"homepage": "https://github.com/licheng5625/node-odata-parser#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}