-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (51 loc) · 1.57 KB
/
package.json
File metadata and controls
70 lines (51 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "Jet", "version":"0.4.0", "license": "GPL",
"repository": { "type": "git", "url": "https://bitbucket.com/awesome39/jet"},
"config": {
"build": {
"app": {
"root": "app",
"node": "app/node",
"nodeModules": "app/node_modules",
"pub": "app/pub"
},
"src": {
"root": "source",
"node": "source/node",
"nodeModules": "source/node_modules",
"pub": "source/pub"
}
}
},
"scripts": {
"install": "npm run-script install-source",
"install-source": "cd source/pub/assets && bower install --allow-root",
"build": "npm run-script build-node && npm run-script build-node-modules && npm run-script build-views",
"build-node": "grunt build-node",
"build-node-modules": "grunt build-node-modules",
"build-views": "grunt build-views",
"install-app": "cd app && npm install",
"clean": "grunt clean",
"serve": "npm run-script build-node && cd app && npm start",
"watch": "grunt watch",
"start": "npm run-script build && npm run-script watch"
},
"devDependencies": {
"bower": "latest",
"grunt": "latest",
"grunt-contrib-watch": "latest",
"grunt-contrib-clean": "latest",
"grunt-contrib-copy": "latest",
"grunt-contrib-coffee": "latest",
"grunt-contrib-jade": "latest",
"grunt-contrib-less": "latest",
"grunt-bower-task": "latest",
"grunt-yaml": "latest",
"grunt-cli": "latest",
"coffee-script": "latest",
"less": "latest",
"mocha": "latest",
"chai": "latest",
"supertest": "latest"
}
}