-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "@star__hoshi/tart",
"version": "0.11.0",
"description": "A thin wrapper for Cloud Functions.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tslint -p tslint.json && tsc -d",
"publish:patch": "yarn run build && npm version patch && git push origin master && git push origin --tags && npm publish --access=public",
"publish:minor": "yarn run build && npm version minor && git push origin master && git push origin --tags && npm publish --access=public",
"publish:major": "yarn run build && npm version major && git push origin master && git push origin --tags && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starhoshi/tart.git"
},
"keywords": [
"firebase",
"cloudfunctions",
"firestore"
],
"author": "star__hoshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/starhoshi/tart/issues"
},
"homepage": "https://github.com/starhoshi/tart#readme",
"peerDependencies": {
"firebase-admin": "^6.4.0"
},
"devDependencies": {
"firebase-admin": "^6.4.0",
"@types/jest": "^23.1.1",
"jest": "^23.1.0",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"typescript": "^2.9.2"
},
"jest": {
"transform": {
"\\.ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "src/test/.*.test.ts",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}