forked from zed0/clang-format-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 857 Bytes
/
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
{
"name": "clang-format-configurator",
"version": "0.0.3",
"description": "Interactively view changes in clang-format configuration",
"main": "server.js",
"dependencies": {
"body-parser": "^1.14.1",
"express": "^4.13.3",
"file-saver": "^1.3.8",
"js-yaml": "^3.11.0",
"marked": "^0.3.5",
"userid": "^0.2.0"
},
"devDependencies": {
"concurrently": "^3.5.1",
"parcel-bundler": "^1.7.0"
},
"scripts": {
"start": "concurrently --kill-others \"npm run server\" \"npm run client\" \"npm run client:watch\"",
"server": "node server/server.js",
"client": "./node_modules/.bin/parcel ./client/index.html -p 8080 --open",
"client:watch": "./node_modules/.bin/parcel watch ./client/index.html"
},
"keywords": [
"clang"
],
"author": "Ben Falconer <[email protected]>",
"license": "MIT"
}