-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1008 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1008 Bytes
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
{
"name": "shaderity-loader",
"version": "0.0.19",
"main": "index.js",
"repository": "https://github.com/emadurandal/shaderity.git",
"author": "Yuki Shimada <emadurandal@gmail.com>",
"license": "MIT",
"scripts": {
"build-test": "npx webpack --config ./test/webpack.config.js",
"test": "yarn test-unit",
"test-unit": "jest --config jest.config.js ./test",
"prepare-deps": "npm --prefix ./shaderity-node install",
"setup": "npm run _build-deps ; npm run _reinstall-deps",
"_build-deps": "npm --prefix ./shaderity-node run yarn-pack",
"_reinstall-deps": "npx shx rm -rf ./node_modules/shaderity-node && yarn cache clean && yarn add ./shaderity-node/shaderity-node-tmp.tgz",
"setup-submodule": "git submodule update --init"
},
"devDependencies": {
"glob-parent": "^6.0.2",
"jest": "^28.1.0",
"minimist": "^1.2.6",
"shx": "^0.3.4",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.4"
},
"dependencies": {
"shaderity-node": "0.0.8"
}
}