-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 788 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "cljs-browser-repl",
"version": "1.0.0",
"description": "A web clojurescript repl.",
"main": "index.js",
"scripts": {
"compile:css": "lessc src/cljs_browser_repl/ui/less/index.less resources/public/style.css",
"figwheel": "rlwrap lein figwheel",
"cljsbuild": "lein clean && lein cljsbuild once min",
"start": "run-s compile:css figwheel",
"build": "run-s \"compile:css -- --clean-css\" cljsbuild",
"test": "echo \"Error: no test specified\" && exit 1",
"outdated": "npm outdated && lein ancient :all"
},
"dependencies": {},
"devDependencies": {
"less": "^2.7.2",
"less-plugin-clean-css": "^1.5.1",
"npm-run-all": "^4.0.2"
},
"author": "Joaquin Oltra <joaquin@chimeces.com> (http://chimeces.com)",
"license": "ISC"
}