-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.49 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "bonfire",
"displayName": "Bonfire",
"version": "1.0.3",
"description": "Node job scheduling backed by Firebase RD.",
"keywords": [
"firebase",
"scheduling",
"jobs",
"job-queue",
"job-service"
],
"main": "./dist/Index.js",
"scripts": {
"prepare": "yarn build",
"lint": "tslint -c ./tslint.json -p ./tsconfig.json --type-check ./lib/**/*.ts",
"build": "tsc",
"test": "jest --no-cache",
"docgen": "./node_modules/.bin/typedoc --json ./docs/docs.json"
},
"repository": "https://github.com/Karn/bonfire.git",
"author": "Karn Saheb <hello@karn.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/karn/bonfire/issues"
},
"types": "dist/Index.d.ts",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/chai-as-promised": "^0.0.31",
"@types/jest": "^20.0.4",
"@types/node": "^8.0.14",
"@types/node-schedule": "1.2.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.13.1",
"firebase-admin-mock": "^0.0.7",
"jest": "^20.0.4",
"ts-jest": "^20.0.7",
"tslint": "^5.7.0",
"typescript": "^2.4.1",
"typedoc": "^0.8.0"
},
"dependencies": {
"firebase-admin": "5.0.1",
"node-schedule": "1.2.3"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}