-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "competitions-v2",
"version": "0.0.1",
"dependencies": {
"jquery": "^3.2.1",
"npm-watch": "^0.2.0",
"riot": "^3.6.3",
"stylus": "^0.54.5",
"uglify-js": "^3.0.28"
},
"devDependencies": {},
"watch": {
"build-stylus": {
"patterns": [
"src/static/stylus"
],
"extensions": "styl",
"quiet": true,
"legacyWatch": true,
"delay": 100
},
"build-riot": {
"patterns": [
"src/static/riot"
],
"extensions": "tag",
"quiet": true,
"legacyWatch": true,
"delay": 100
}
},
"scripts": {
"build-stylus": "stylus --compress --sourcemap-inline < src/static/stylus/index.styl > src/static/generated/output.css",
"build-riot": "riot src/static/riot src/static/generated/riot.js --style stylus",
"concat-riot": "find src/static/riot -name '*.tag' -exec cat {} \\; -exec echo '' \\; > src/static/generated/riot.tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codalab/competitions-v2.git"
},
"author": "",
"bugs": {
"url": "https://github.com/codalab/competitions-v2/issues"
},
"homepage": "https://github.com/codalab/competitions-v2#readme"
}