-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 2.02 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "whatis.enspiral.com",
"version": "0.2.0",
"description": "A description of Enspiral",
"main": "index.js",
"browser": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-html": "node .",
"build-js": "browserify . -o build/bundle.js",
"build-css": "myth src/index.css build/bundle.css",
"build-assets": "cp -r assets/* build",
"build": "mkdir -p build && rm -rf build/* && npm run build-html && npm run build-js && npm run build-css && npm run build-assets",
"start": "npm run build && node server",
"deploy": "npm run build && bin/deploy",
"watch-html": "node . -w",
"watch-js": "watchify . -o build/bundle.js",
"watch-css": "myth -w src/index.css build/bundle.css",
"watch-assets": "cp -r assets/* build",
"watch": "mkdir -p build && rm -rf build/* && (npm run watch-html & npm run watch-js & npm run watch-css & npm run watch-assets)",
"develop": "(npm run watch & node server)"
},
"repository": {
"type": "git",
"url": "https://github.com/enspiral/whatis.enspiral.com"
},
"author": "ahdinosaur",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/enspiral/whatis.enspiral.com/issues"
},
"homepage": "https://github.com/enspiral/whatis.enspiral.com",
"dependencies": {
"bespoke": "^1.0.0",
"bespoke-backdrop": "^1.0.0",
"bespoke-classes": "^1.0.0",
"bespoke-hash": "^1.0.0",
"bespoke-keys": "^1.0.0",
"bespoke-progress": "^1.0.0",
"bespoke-scale": "^1.0.1",
"bespoke-touch": "^1.0.0",
"browserify": "^14.5.0",
"load-metalsmith-plugins": "^0.1.0",
"metalsmith": "^2.3.0",
"metalsmith-collections": "^0.9.0",
"metalsmith-markdown": "^0.2.1",
"metalsmith-templates": "^0.7.0",
"metalsmith-watch": "^1.0.3",
"myth6": "^1.5.0",
"normalize.css": "^7.0.0",
"query-string": "^5.0.1",
"swig": "^1.4.2",
"watchify": "^3.9.0"
},
"devDependencies": {
"connect": "^3.3.0",
"ecstatic": "^3.1.1",
"gh-pages": "^1.1.0"
}
}