This repository was archived by the owner on Mar 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
56
57
58
59
60
61
62
63
64
{
"name": "angular-parts-data",
"version": "0.0.0",
"author": "Scott Cooper <scttcper@gmail.com>",
"license": "MIT",
"private": true,
"repository": "TypeCtrl/angular-parts-data",
"scripts": {
"lint": "tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"start": "DEBUG=parts ts-node ./src/build.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run test -- --coverage --no-cache",
"firebase:build": "tsc -p functions/tsconfig.json",
"firebase:serve": "npm run firebase:build && firebase serve --only functions",
"firebase:shell": "npm run firebase:build && firebase functions:shell",
"firebase:start": "npm run firebase:shell",
"firebase:deploy": "firebase deploy --only functions",
"firebase:logs": "firebase functions:log"
},
"dependencies": {
"algoliasearch": "3.30.0",
"chalk": "2.4.1",
"debug": "4.0.1",
"got": "9.2.2",
"lodash": "4.17.11",
"semver": "5.5.1"
},
"devDependencies": {
"@types/algoliasearch": "3.30.1",
"@types/debug": "0.0.31",
"@types/got": "8.3.5",
"@types/jest": "23.3.11",
"@types/lodash": "4.14.119",
"@types/node": "10.12.18",
"@types/semver": "5.5.0",
"jest": "23.6.0",
"rimraf": "2.6.2",
"ts-jest": "23.10.1",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.0.3"
},
"jest": {
"testURL": "http://localhost",
"transform": {
".ts": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true
},
"engines": {
"node": ">=8.0.0"
}
}