-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1005 Bytes
/
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
{
"author": "Allen Goodman <[email protected]>",
"dependencies": {
"@tensorflow/tfjs": "^0.13.5"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/jest": "^23.3.9",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.5"
},
"license": "MIT",
"main": "index.js",
"name": "cyto-graph",
"repository": "[email protected]:cytoai/cyto-graph.git",
"scripts": {
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:types && npm run build:js",
"test": "jest",
"test:watch": "jest --watch",
"type-check:watch": "npm run type-check -- --watch",
"type-check": "tsc --noEmit"
},
"version": "0.0.2"
}