-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.88 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.88 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
49
50
51
52
{
"name": "radeon-rays",
"version": "1.0.0",
"description": "Node.js bindings for RadeonRays_SDK",
"repository": "https://github.com/01alchemist/RadeonRays_Node.git",
"author": "Nidin Vinayakan <01@01alchemist.com>",
"license": "MIT",
"engines": {
"node": "8.10.0"
},
"main": "./dist/index.js",
"bin": {
"radeonrays": "./bin/radeonrays"
},
"scripts": {
"build.debug": "node-gyp rebuild --debug && webpack --config webpack.config.js --progress --colors",
"build.ts": "webpack --config webpack.config.js --progress --colors",
"build": "node-gyp rebuild && yarn build.ts",
"build-e": "HOME=~/.electron-gyp node-gyp rebuild --target=1.7.5 --arch=x64 --dist-url=https://atom.io/download/electron && webpack --config webpack.config.js --progress --colors",
"watch": "webpack --config webpack.config.js --progress --colors --watch",
"test": "yarn build && node ./node_modules/jest/bin/jest.js --config jest.json",
"tdd": "node ./node_modules/jest/bin/jest.js --config jest.json --watch",
"autogypi": "autogypi",
"node-gyp": "node-gyp",
"emcc-path": "emcc-path",
"copyasm": "copyasm",
"ndts": "ndts"
},
"dependencies": {
"bindings": "^1.3.0",
"gl-matrix": "^2.4.0",
"pngjs": "^3.3.0",
"ts-node": "^3.3.0"
},
"devDependencies": {
"@types/jest": "^20.0.7",
"@types/node": "^8.0.24",
"autogypi": "^0.2.2",
"copy-webpack-plugin": "^4.0.1",
"jest": "^20.0.4",
"nbind": "^0.3.13",
"node-loader": "^0.6.0",
"raw-loader": "^0.5.1",
"ts-jest": "^20.0.10",
"ts-loader": "^2.3.3",
"tslint": "^5.6.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.4.2",
"webpack": "^3.5.5",
"webpack-node-externals": "^1.6.0"
}
}