forked from arition/torch-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.8 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": "@techainer1t/torch-js",
"version": "0.13.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Kittipat Virochsiri, arition, raghavmecheri, lamhoangtung",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Techainer/torch-js"
},
"scripts": {
"install": "prebuild-install -r napi || cmake-js compile",
"build": "node build.js",
"compile": "cmake-js compile",
"rebuild": "cmake-js rebuild",
"test": "jest --forceExit --verbose",
"lint": "eslint ./",
"build-prebuild": "prebuild -t 3 -r napi --include-regex \"\\.[nsd][oyl][dl]?[ie]?b?$\" --backend cmake-js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"yarn lint",
"prettier --write"
]
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@jest/globals": "^26.5.2",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.7",
"jest": "^26.4.2",
"lint-staged": "^10.5.3",
"prebuild": "^10.0.1",
"prettier": "^2.2.1"
},
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^6.1.0",
"node-addon-api": "^3.1.0",
"prebuild-install": "^6.0.0",
"typescript": "^4.1.3",
"yarn": "^1.22.10"
},
"binary": {
"napi_versions": [
3
]
}
}