-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "nn-function-generator",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:urish/nn-function-generator.git",
"author": "Uri Shaked <uri@urishaked.com>",
"license": "MIT",
"scripts": {
"build:cloud": "gcloud builds submit --tag gcr.io/code-ml-experiments/nn-function-generator --project code-ml-experiments",
"dataset": "ts-node src/index",
"start": "ts-node-dev src/function-server",
"test": "jest"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^3.0.0",
"@types/axios": "^0.14.0",
"@types/node": "^10.12.18",
"@types/prettier": "^1.15.2",
"@types/progress": "^2.0.3",
"axios": "^0.18.0",
"chalk": "^2.4.2",
"express": "^4.16.4",
"prettier": "^1.16.1",
"progress": "^2.0.3",
"tsutils": "^3.12.0",
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^23.3.12",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"ts-node-dev": "^1.0.0-pre.32"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/*.spec.ts"
]
}
}