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
|
{
"name": "newspipe",
"version": "0.0.1",
"author": {
"name": "François Schmidts",
"email": "francois.schmidts@gmail.com",
"url": "1pxsolidblack.pl"
},
"description": "Newspipe is a web-based news aggregator.",
"repository": {
"type": "git",
"url": "https://github.com/newspipe/newspipe"
},
"license": "AGPL-3.0",
"engines": {
"npm": "^3.8.1"
},
"main": "src/web/js/app.js",
"dependencies": {
"bootstrap": "^3.3.7",
"bower": "^1.7.9",
"classnames": "^2.2.5",
"flux": "^2.1.1",
"jquery": "^3.1.1",
"keymirror": "^0.1.1",
"object-assign": "^4.1.0",
"react": "^15.3.2",
"react-bootstrap": "^0.30.3",
"react-dom": "^15.3.2"
},
"devDependencies": {
"browserify": "^13.1.0",
"envify": "^3.4.1",
"reactify": "^1.1.1",
"uglify-js": "^2.7.3",
"watchify": "^3.7.0"
},
"scripts": {
"start": "watchify -o src/web/static/js/bundle.min.js -v -d src/web/js/app.js",
"build": "browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > src/web/static/js/bundle.min.js",
"postinstall": "./node_modules/bower/bin/bower install"
},
"browserify": {
"transform": [
"reactify",
"envify"
]
}
}
|