-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "penguin.js",
"version": "1.0.0-rc.22",
"description": "This is a simple building chain for a CMS.",
"module": "index.js",
"bin": {
"penguin": "bin/penguin.js",
"penguin-passwordless": "bin/passwordless.js"
},
"scripts": {
"watch": "watch 'make js' src",
"build": "make js",
"clean": "make clean",
"prepublishOnly": "npm run -s build",
"test": "ava",
"start": "node server.js"
},
"ava": {
"files": [
"src/*_test.js",
"lib/*_test.js",
"bin/*_test.js"
]
},
"keywords": [],
"author": "Dominik Burgdörfer <[email protected]> (https://domachine.de/)",
"license": "MIT",
"dependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"cheerio": "^0.22.0",
"errorhandler": "^1.5.0",
"events": "^1.1.1",
"gaze": "^1.1.2",
"glob": "^7.1.1",
"he": "^1.1.1",
"http-errors": "^1.5.1",
"load-json-file": "^2.0.0",
"merge-stream": "^1.0.1",
"minimatch": "^3.0.3",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"pg": "^6.1.2",
"pg-query-stream": "^1.0.0",
"pug": "^2.0.0-beta6",
"reselect": "^2.5.4",
"resolve": "^1.1.7",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"rollup-middleware": "^0.1.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"serialize-javascript": "^1.3.0",
"shelljs": "^0.7.5",
"split": "^1.0.0",
"string-to-stream": "^1.1.0",
"subarg": "^1.0.0",
"to-pascal-case": "^1.0.0",
"uglify-js": "^2.7.4",
"write-json-file": "^2.0.0"
},
"devDependencies": {
"ava": "^0.18.1",
"standard": "^8.5.0",
"watch": "^1.0.2"
},
"peerDependencies": {
"express": "^4.14.1",
"redux": "^3.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/domachine/penguin.js.git"
},
"bugs": {
"url": "https://github.com/domachine/penguin.js/issues"
},
"homepage": "https://github.com/domachine/penguin.js#readme"
}