-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "harp-starter",
"version": "1.0.0",
"description": "A starting point for a harp static site, with support for external npm modules",
"main": "index.js",
"scripts": {
"serve": "node index.js serve",
"build": "npm run copy-fonts && node index.js build",
"build-js": "browserify public/assets/js/app.js -o public/assets/js/bundle.js",
"watch-js": "watchify public/assets/js/app.js -o public/assets/js/bundle.js -dv",
"copy-fonts": "cp -R node_modules/font-awesome/fonts node_modules/bootstrap/fonts public/assets",
"dev": "npm run copy-fonts && npm run build-js && npm run watch-js & npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evendev/harp-starter.git"
},
"keywords": [
"bootstrap",
"browserify",
"harp",
"harpjs",
"jquery",
"moment",
"underscore"
],
"author": "Steve Jamesson",
"license": "ISC",
"bugs": {
"url": "https://github.com/evendev/harp-starter/issues"
},
"homepage": "https://github.com/evendev/harp-starter#readme",
"devDependencies": {
"bootstrap": "^3.3.5",
"browserify": "^11.0.1",
"font-awesome": "^4.4.0",
"harp": "^0.17.0",
"jquery": "^2.1.4",
"moment": "^2.10.6",
"rsyncwrapper": "^0.4.3",
"underscore": "^1.8.3",
"util": "^0.10.3",
"yargs": "^3.19.0"
}
}