-
Notifications
You must be signed in to change notification settings - Fork 425
/
package.json
49 lines (49 loc) · 1.13 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
47
48
49
{
"name": "Popcorn",
"version": "1.0.0",
"description": "Popcorn is a movie discovery application made using MontageJS",
"license": "BSD-3-Clause",
"author": "Montage Studio, inc. (http://montagestudio.com/)",
"repository": {
"type": "git",
"url": "https://github.com/montagejs/popcorn.git"
},
"production": true,
"appcache": {
"exclude": [
"**/manifest.appcache",
"**/ui/**/*",
"**/core/**/*",
"**/*.json",
"**/node_modules/**/*"
]
},
"manifest": true,
"dependencies": {
"digit": "montagejs/digit#master",
"montage": "montagejs/montage#master",
"query-params": "0.0.1",
"url": "^0.11.0"
},
"devDependencies": {
"jshint": "^2.9.5",
"minit": "^0.5.7",
"montage-testing": "~0.5.1",
"mop": "montagejs/mop#master"
},
"scripts": {
"lint": "jshint .",
"build": "mop .",
"start": "minit serve",
"start:dist": "minit serve -r dist",
"publish": "git checkout gh-pages && git subtree push --prefix dist origin gh-pages"
},
"excludes": [
"**/**/mocha.css",
"dist",
"builds"
],
"bundle": [
"ui/main.reel"
]
}