-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.39 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
{
"name": "river.news",
"version": "1.0.0",
"description": "A JS only feed reader based on https://superfeedr.com",
"main": "index.js",
"dependencies": {
"reactify": "^1.1.1",
"browserify": "^11.1.0",
"npm-watch": "*",
"uglifyify": "^3.0.1",
"jquery": "2.1.4",
"react": "0.13.3",
"marked": "0.3.5",
"to-markdown": "1.3.0",
"sw-precache": "2.3.0",
"sw-toolbox": "3.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-react && npm run sw-precache",
"build-react": "node_modules/browserify/bin/cmd.js -e src/river.news.jsx -t reactify -t uglifyify -o site/js/river.news.min.js" ,
"sw-precache": "cp node_modules/sw-toolbox/sw-toolbox.js site/js/sw/sw-toolbox.js; cp node_modules/sw-toolbox/sw-toolbox.map.json site/js/sw/sw-toolbox.map.json; cp src/sw/request-caching.js site/js/sw/request-caching.js; cp src/sw/registration.js site/js/sw/registration.js; node_modules/sw-precache/cli.js --root=site/ --import-scripts=js/sw/sw-toolbox.js,js/sw/request-caching.js",
"watch": "npm-watch"
},
"watch": {
"build": "src/*"
},
"repository": {
"type": "git",
"url": "https://github.com/superfeedr/river.news"
},
"author": "superfeedr",
"license": "MIT",
"bugs": {
"url": "https://github.com/superfeedr/river.news/issues"
},
"homepage": "https://github.com/superfeedr/river.news"
}