-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pebblebed",
"version": "1.1.0",
"description": "Simplified interactions with Google Datastore for NodeJS",
"keywords": [
"cloud",
"datastore",
"entities",
"google",
"load",
"nodejs",
"query",
"save"
],
"homepage": "https://github.com/lostpebble/pebblebed#readme",
"bugs": {
"url": "https://github.com/lostpebble/pebblebed/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lostpebble/pebblebed.git"
},
"license": "Apache-2.0",
"author": "Paul Myburgh",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run build-es6",
"build-es2017": "rimraf ./dist-next tsc --p tsconfig.next.json",
"build-es6": "rimraf ./dist && tsc",
"cut-major-release": "npm version major && git push --follow-tags && npm publish",
"cut-minor-release": "npm version minor && git push --follow-tags && npm publish",
"cut-patch-release": "npm version patch && git push --follow-tags && npm publish",
"prepublish": "in-publish && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run watch-es6",
"watch-es2017": "tsc --p tsconfig.next.json --watch",
"watch-es6": "tsc --watch"
},
"jest": {
"bail": false,
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "jsdom",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"verbose": true
},
"dependencies": {
"dynamic-config-store": "^1.0.3"
},
"devDependencies": {
"@types/ioredis": "^3.2.7",
"@types/hapi__joi": "^16.0.10",
"@types/lodash": "^4.14.106",
"@types/node": "^8.0.17",
"concurrently": "^3.5.0",
"in-publish": "^2.0.0",
"ioredis": "^3.2.2",
"jest": "^23.6.0",
"@hapi/joi": "^17.1.0",
"lodash": "^4.17.5",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0",
"typescript": "3.0.3"
},
"peerDependencies": {
"@google-cloud/datastore": "^5.0.3",
"ioredis": "^3.2.2",
"@hapi/joi": "^17.1.1"
},
"engines": {
"node": ">=6.5.0"
}
}