-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.58 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
{
"name": "tinsl",
"version": "0.1.0",
"description": "language for multipass texture-to-texture effects",
"main": "index.js",
"scripts": {
"test": "npx cross-env TS_NODE_PROJECT=\"testtsconfig.json\" mocha -r ts-node/register src/test.setup.ts src/**/*.test.ts",
"grammar": "npx nearleyc src/grammar.ne -o src/grammar.ts",
"build": "npx tsc --project tsconfig.notests.json --outDir dist",
"bundle": "npx webpack --env development --env testsuite --config webpack.config.js",
"playground": "npx webpack --env development --env playground --config webpack.config.js",
"playground:prod": "npx webpack --env production --env playground --config webpack.config.js",
"buildwatch": "npx tsc -w --outDir dist",
"bundlewatch": "npm run bundle -- --watch",
"playgroundwatch": "npm run playground -- --watch",
"prepublish": "npm run build"
},
"keywords": [
"glsl",
"webgl",
"webgl2"
],
"author": "Cole Granof",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"@types/moo": "^0.5.3",
"@types/nearley": "^2.11.1",
"@types/node": "^14.14.9",
"chai": "^4.2.0",
"chai-exclude": "^2.0.2",
"cross-env": "^7.0.3",
"css-loader": "^5.1.3",
"file-loader": "^6.2.0",
"mocha": "^8.1.3",
"monaco-editor": "^0.23.0",
"monaco-editor-webpack-plugin": "^3.0.1",
"monaco-vim": "^0.1.12",
"moo": "^0.5.1",
"nearley": "^2.19.7",
"style-loader": "^2.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2",
"webpack": "^5.34.0",
"webpack-cli": "^4.5.0"
}
}