-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
{
"main": "./dist/binding.js",
"types": "./dist/binding.d.ts",
"scripts": {
"pretest": "tsc",
"test": "jest",
"build": "tsc",
"watch": "tsc -w",
"install": "prebuild-install -r napi --backend cmake-js || cmake-js rebuild",
"rebuild": "cmake-js rebuild",
"prebuild": "prebuild -r napi --backend cmake-js --strip --verbose",
"upload": "prebuild -r napi --backend cmake-js -u",
"prepare": "husky install"
},
"name": "node-gpgpu",
"version": "0.0.6",
"author": "JaroslawPokropinski",
"license": "ISC",
"description": "Node.js library for gpu acceleration using pure javascript",
"binary": {
"napi_versions": [
7
]
},
"repository": {
"type": "git",
"url": "https://github.com/JaroslawPokropinski/node-gpgpu.git"
},
"dependencies": {
"esprima": "^4.0.1",
"prebuild-install": "^7.0.1",
"recast": "^0.20.5"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/esprima": "^4.0.3",
"@types/jest": "^28.1.2",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cmake-js": "^6.3.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^28.1.1",
"lint-staged": "^12.3.7",
"mrm": "^4.0.0",
"mrm-task-lint-staged": "^7.0.0",
"node-addon-api": "^4.3.0",
"prebuild": "^11.0.3",
"prettier": "^2.6.1",
"ts-jest": "^28.0.5",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.js": "eslint '*/**/*.{js,ts}' --cache --fix",
"*.ts": "eslint '*/**/*.{js,ts}' --cache --fix"
}
}