-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
{
"name": "@amagaki/amagaki-plugin-kintaro",
"version": "2.1.3",
"license": "MIT",
"homepage": "https://amagaki.dev",
"repository": {
"type": "git",
"url": "git://github.com/blinkk/amagaki-plugin-kintaro.git"
},
"engines": {
"node": ">=14"
},
"main": "./dist/index.js",
"scripts": {
"build:example": "amagaki build example",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc; cp src/*.json dist/",
"dev:start": "npm run compile",
"dev": "nodemon --watch src -e ts --exec npm run dev:start",
"fix": "node ./node_modules/eslint/bin/eslint --fix src/**/*.ts",
"prepare": "rm -rf dist/; npm run compile",
"serve:example": "amagaki serve example",
"test": "ava"
},
"ava": {
"require": [
"ts-node/register"
],
"extensions": [
"ts"
],
"files": [
"src/*.test.ts"
]
},
"devDependencies": {
"@amagaki/amagaki": "^2.2.2",
"@types/async": "^3.2.6",
"@types/express": "^4.17.12",
"@types/flat": "^5.0.1",
"@types/js-yaml": "^3.12.5",
"@types/node": "^13.11.1",
"ava": "^3.14.0",
"eslint": "^7.15.0",
"eslint-plugin-sort-class-members": "^1.9.0",
"gts": "^2.0.2",
"nodemon": "^2.0.4",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typedoc": "^0.19.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@google-cloud/cloudbuild": "^2.6.0",
"@google-cloud/datastore": "^6.6.2",
"@google-cloud/functions-framework": "^3.0.0",
"async": "^3.2.0",
"flat": "^5.0.2",
"google-auth-library": "^7.9.1",
"googleapis": "^85.0.0",
"js-yaml": "^4.1.0"
},
"files": [
"dist/"
]
}