-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.16 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
61
62
63
{
"name": "art-of-io",
"version": "0.0.0",
"description": "a magical introduction to input and output signals",
"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": "lessc src/index.less 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": "npm run build-css && watch-run -p '**/*.less' npm run build-css",
"watch-assets": "npm run build-assets && watch-run -p 'assets/**/*' npm run build-assets",
"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/ioschool/art-of-io"
},
"author": "ioschool",
"license": "CC-BY-SA",
"bugs": {
"url": "https://github.com/ioschool/art-of-io/issues"
},
"homepage": "https://github.com/ioschool/art-of-io",
"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-theme-voltaire": "^1.0.1",
"bespoke-touch": "^1.0.0",
"bootstrap": "^3.3.2",
"browserify": "^6.1.0",
"highlight.js": "^8.4.0",
"less": "^2.4.0",
"load-metalsmith-plugins": "^0.1.0",
"metalsmith": "^1.0.1",
"metalsmith-templates": "^0.6.0",
"metalsmith-watch": "^0.1.1",
"notevil": "^0.8.1",
"query-string": "^1.0.0",
"swig": "^1.4.2",
"watchify": "^2.0.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"connect": "^3.3.0",
"ecstatic": "^0.5.5",
"gh-pages": "^0.2.0",
"watch-run": "git://github.com/queckezz/watch-run"
}
}