This repository was archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.02 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.02 KB
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
49
50
51
52
53
54
55
{
"name": "@repositive/query-parser",
"version": "2.3.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"setup": "npm i && rm -fr dist && tsc && pegjs -o dist/parsers/natural.js src/parsers/natural.pegjs",
"make": "rm -fr dist && tsc && pegjs -o dist/parsers/natural.js src/parsers/natural.pegjs && pegjs -o dist/parsers/phrase.js src/parsers/phrase.pegjs",
"test": "nyc --reporter lcov tape $(find dist -name '*.js') | tap-spec",
"lint": "tslint -c tslint.json src/**/*.ts",
"start": "nodemon --watch src --watch package.json -e ts,json,pegjs -q -x 'rm -fr dist && echo \"\\n============\\nCOMPILING...\\n============\\n\\n\" && tsc --outDir dist || return 0 && pegjs -o dist/parsers/natural.js src/parsers/natural.pegjs || return 0 && node dist/main/cli.js'",
"testdev": "nodemon --watch src --watch package.json -e ts,json,pegjs -q -x 'rm -fr dist && echo \"\\n============\\nCOMPILING...\\n============\\n\\n\" && tsc --outDir dist || return 0 && pegjs -o dist/parsers/natural.js src/parsers/natural.pegjs || return 0 && tape \"dist/**/*.spec.js\"'"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.spec.js",
"**/*.d.ts"
]
},
"author": "Repositive Team",
"license": "LGPL-3.0+",
"homepage": "https://github.com/repositive/query-parser",
"repository": {
"type": "git",
"url": "https://github.com/repositive/query-parser.git"
},
"devDependencies": {
"@repositive/typescript": "1.1.2",
"@types/csv-parse": "1.1.9",
"@types/es6-shim": "0.31.34",
"@types/node": "7.0.39",
"@types/pegjs": "^0.10.0",
"@types/ramda": "0.0.2",
"@types/sinon": "2.3.2",
"@types/tape": "^4.2.28",
"@types/uuid": "^2.0.29",
"csv-parse": "1.2.1",
"nodemon": "latest",
"nyc": "^10.3.2",
"pegjs": "^0.10.0",
"sinon": "2.3.8",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tslint": "5.5.0",
"typescript": "2.5.3"
},
"dependencies": {
"ramda": "^0.22.1",
"uuid": "^3.0.1"
}
}