-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.23 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
{
"name": "netitor",
"version": "0.0.1",
"description": "a pedagogical web based code editor for creative netizens in training",
"main": "src/main.js",
"scripts": {
"lint": "standard src/*.js src/*/*.js",
"compile-css": "echo 'module.exports = `' > src/css/css.js && cat src/css/FiraMono.css node_modules/codemirror/lib/codemirror.css node_modules/codemirror/addon/hint/show-hint.css src/css/main.css >> src/css/css.js && echo '`' >> src/css/css.js",
"prebuild": "npm run lint; npm run compile-css",
"build": "browserify src/main.js > build/netitor.js",
"postbuild": "terser build/netitor.js -cm -o build/netitor.min.js",
"watch": "nodemon --watch src --ignore src/css/*.js -x 'npm run build'"
},
"author": "netizen.org <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"codemirror": "^5.52.2",
"css-selector-parser": "^1.4.1",
"htmlhint": "^0.14.1",
"js-beautify": "^1.11.0",
"jshint": "^2.11.1",
"pako": "^1.0.11",
"showdown": "^2.1.0",
"string-similarity": "^4.0.1",
"stylelint-browser-bundle": "github:nbriz/stylelint-browser-bundle"
},
"devDependencies": {
"browserify": "^16.5.1",
"nodemon": "^2.0.2",
"standard": "^14.3.3",
"terser": "^4.8.0"
}
}