-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 946 Bytes
/
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
{
"name": "sample-ui-browserify",
"version": "0.0.0",
"description": "This sample uses browserify to organize the code in to modules, vash for client side rendering of templates and jQuery for everything else",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/nodemon -e js,vash ./build.js",
"deploy": "cp -r public/* ./dist/"
},
"repository": {
"type": "git",
"url": "[email protected]:ethoinformatics/sample-ui-browserify.git"
},
"author": "ethoformatics",
"license": "none",
"bugs": {
"url": "https://github.com/ethoinformatics/sample-ui-browserify/issues"
},
"homepage": "https://github.com/ethoinformatics/sample-ui-browserify",
"dependencies": {
"brfs": "^1.2.0",
"browserify": "^5.9.1",
"lodash": "^2.4.1",
"mkdirp": "^0.5.0",
"node-lessify": "0.0.4",
"reactive": "^1.2.0",
"vashify": "^0.3.3"
},
"devDependencies": {
"nodemon": "^1.2.1"
}
}