-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 954 Bytes
/
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
{
"name": "navitia-query-builder",
"version": "0.0.5",
"description": "Fluently build Navitia query URLs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/MonsieurMan/navitia-query-builder/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MonsieurMan/navitia-query-builder.git"
},
"author": "MonsieurMan",
"license": "MIT",
"private": false,
"scripts": {
"prepublishOnly": "yarn clean && yarn build",
"clean": "rimraf ./dist",
"build": "tsc",
"lint": "tslint -c tslint.json './src/**/*.ts'",
"test": "jest --config jest.config.json",
"pretest": "yarn lint",
"report-coverage": "coveralls < ./coverage/lcov.info"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"coveralls": "^3.0.0",
"jest": "^22.4.3",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.4",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
}
}