-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.7 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
{
"author": "Daniel Chumak (CDanU)",
"name": "uncrustify_config",
"description": "Simple frontend for the emscripten interface of Uncrustify.",
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cdanu/uncrustify_config.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"preinstall": "mkdir -p build && cd build && cmake -DEXECUTABLE_OUTPUT_PATH=../js/ ../uncrustify/emscripten && make emscripten_test",
"postinstall": "node ./node_modules/webpack/bin/webpack.js && node_modules/copyfiles/copyfiles --flat ./index.html ./dist/ && node_modules/copyfiles/copyfiles ./img/* ./dist/img/",
"webpack": "node ./node_modules/webpack/bin/webpack.js",
"make": "npm run preinstall && npm run webpack",
"dev": "webpack -d --watch"
},
"browser": {
"fs": false,
"path": false,
"crypto": false
},
"dependencies": {
"@types/ace": "0.0.42",
"@types/file-saver": "^2.0.1",
"@types/knockout": "^3.4.66",
"brace": "^0.11.0",
"core-util-is": "^1.0.2",
"css-loader": "^3.2.0",
"extract-text-webpack-plugin": "^v4.0.0-alpha.0",
"file-loader": "^4.2.0",
"file-saver": "^2.0.2",
"knockout": "^3.5.0",
"node-normalize-scss": "^8.0.1",
"node-sass": "^4.13.0",
"raw-loader": "^3.1.0",
"sass-loader": "^8.0.0",
"script-loader": "^0.7.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.6.4",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"copyfiles": "*"
},
"devDependencies": {
"@types/node": "^8.10.58",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
},
"main": "js/app.js"
}