forked from davidedc/livecodelab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.69 KB
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
{
"name": "livecodelab",
"version": "0.1.0",
"description": "A live coding environment for the browser",
"scripts": {
"statics": "cp -r ./static/* ./dist/",
"style": "recess ./style/* --compile > ./dist/style.css",
"watch-style": "nodemon --watch style -e css --exec 'npm run style'",
"html": "cp ./html/index.html ./dist/",
"watch-html": "nodemon --watch html -e html --exec 'npm run html'",
"jison": "jison ./src/grammar/lcl-grammar.jison -m commonjs -o ./src/generated/parser.js",
"buildfirst": "npm run statics && npm run style && npm run html && npm run jison",
"compile": "browserify -t coffeeify --extension='.coffee' ./src/coffee/lcl-init.coffee -o ./dist/app.js",
"watch-js": "watchify -t coffeeify --extension='.coffee' ./src/coffee/lcl-init.coffee -o ./dist/app.js",
"compiledev": "browserify --debug -t coffeeify --extension='.coffee' ./src/coffee/lcl-init.coffee -o ./dist/app.js",
"prodbuild": "npm run buildfirst && npm run compile",
"devbuild": "npm run buildfirst && npm run compiledev",
"serve": "http-server ./dist",
"lintcoffee": "coffeelint ./src/",
"lintjs": "jslint ./src/**/*.js",
"lintstyle": "recess ./style/*",
"docs": "docco docs/**/*.md -o dist/docs",
"docs:src": "docco src/coffee/**/*.coffee -o dist/docs/src"
},
"devDependencies": {
"browserify": "^10.2.4",
"coffeeify": "^1.1.0",
"coffeelint": "^1.10.1",
"docco": "^0.7.0",
"grunt-git-describe": "^2.3.2",
"http-server": "^0.8.0",
"jison": "^0.4.15",
"jslint": "^0.9.0",
"nodemon": "^1.3.7",
"recess": "^1.1.9",
"watchify": "^3.2.3"
},
"dependencies": {
"coffee-script": "^1.9.3",
"underscore": "^1.8.3"
}
}