-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 866 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 866 Bytes
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
{
"name": "tabloid",
"version": "1.0.0",
"description": "Lightweight note taking extension for Chrome",
"main": "index.js",
"watch": {
"bundle": {
"patterns": ["indexDev.js","style.css","index.html"],
"extensions": ["js","css","html"],
"verbose": true
}
},
"scripts": {
"reload": "open http://reload.extensions/",
"bundle": "browserify indexDev.js -o index.js",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connoro7/cs-hackathon.git"
},
"author": "Connor Dillon, David Chuang",
"license": "MIT",
"bugs": {
"url": "https://github.com/connoro7/cs-hackathon/issues"
},
"homepage": "https://github.com/connoro7/cs-hackathon#readme",
"devDependencies": {
"browser-sync": "^2.29.1",
"browserify": "^17.0.0",
"npm-watch": "^0.11.0"
}
}