-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
157 lines (157 loc) · 4.17 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "punchcard-cms",
"description": "Node-based content management system",
"version": "0.0.0",
"main": "index.js",
"keywords": [
"punchcard-cms",
"content",
"form",
"cms",
"eyeglass-module"
],
"eyeglass": {
"exports": "lib/eyeglass-exports.js",
"name": "punchcard",
"needs": "^0.8.3"
},
"scripts": {
"pretest": "npm run lint",
"test": "NODE_APP_INSTANCE=test npm run nyc",
"posttest": "gulp build",
"debug": "nodemon -e html,js --inspect ./index.js",
"start": "nodemon -e html,js ./index.js",
"lint": "gulp lint",
"ava:watch": "NODE_ENV=test NODE_CONFIG_DIR=../config ava --watch",
"ava": "NODE_ENV=test NODE_CONFIG_DIR=../config ava",
"nyc": "nyc --all npm run ava",
"dev:database": "postgres -D /usr/local/var/postgres",
"dev:start": "gulp",
"dev": "npm run dev:database & npm run dev:start",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"reparo": "reparo -b master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/punchcard-cms/punchcard.git"
},
"contributors": [
"Rachel White <[email protected]>",
"Sam Richard <[email protected]>",
"Scott Nath <[email protected]>",
"Ayush Gupta <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"acl": "^0.4.10",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.2",
"breakpoint-sass": "^2.7.1",
"cfenv": "^1.0.3",
"config": "^1.26.1",
"connect-ensure-login": "^0.1.1",
"connect-multiparty": "^2.0.0",
"connect-session-knex": "^1.3.3",
"debug": "^2.6.8",
"express": "^4.15.3",
"express-session": "^1.15.3",
"ibm-design-colors": "^2.0.4",
"input-plugin-checkbox": "^0.3.1",
"input-plugin-email": "^0.2.0",
"input-plugin-file": "^1.2.1",
"input-plugin-password": "^0.1.4",
"input-plugin-quote": "^0.2.2",
"input-plugin-radio": "^0.2.3",
"input-plugin-select": "^0.3.0",
"input-plugin-text": "^0.1.3",
"input-plugin-textarea": "^0.1.3",
"input-plugin-url": "^0.3.0",
"js-yaml": "^3.8.4",
"knex": "^0.13.0",
"lodash": "^4.17.2",
"map-stream": "^0.0.7",
"mkdirp": "^0.5.1",
"modularscale-sass": "^3.0.2",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"morgan": "^1.8.2",
"multer": "^1.2.1",
"multiparty": "^4.1.2",
"node-dir": "^0.1.17",
"node-schedule": "^1.2.3",
"nodemon": "^1.10.0",
"nunjucks": "^3.0.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "^6.2.3",
"punchcard-content-types": "^6.1.20",
"request": "^2.80.0",
"sass-toolkit": "^2.10.2",
"serve-favicon": "^2.4.3",
"stream-from-array": "^1.0.0",
"underscore.string": "^3.3.4",
"url-join": "^2.0.2",
"uuid": "^3.0.1",
"validator": "^7.0.0",
"vinyl": "^2.0.0",
"vinyl-fs": "^2.4.4"
},
"devDependencies": {
"ava": "^0.19.1",
"ava-config": "^1.1.0",
"coveralls": "^2.13.1",
"del": "^2.2.2",
"eslint-config-punchcard": "^1.1.1",
"ghooks": "^2.0.0",
"gulp": "^3.9.1",
"input-plugin-file": "^1.1.0",
"lorem-ipsum": "^1.0.4",
"mock-express-response": "^0.2.0",
"nock": "^9.0.12",
"node-mocks-http": "^1.6.3",
"nyc": "^10.3.2",
"punchcard-commit-msg": "^1.1.0",
"punchcard-runner": "^2.1.2",
"punchcard-semantic-release": "^2.0.3",
"punchcard-shared-tests": "^1.3.0",
"reparo": "^1.1.1-0",
"semantic-release": "^6.3.6",
"supertest": "^3.0.0",
"tap-difflet": "^0.7.0",
"uuid": "^2.0.2"
},
"engines": {
"node": "^6"
},
"nyc": {
"exclude": [
"tests/**/*",
"config/**/*",
"public/**/*",
"bower_components/**/*",
"Gulpfile.js",
"coverage"
]
},
"ava": {
"files": [
"tests/*.js",
"!tests/schedule.js"
],
"failFast": false,
"tap": false,
"require": [
"ava-config"
]
},
"config": {
"ghooks": {
"commit-msg": "punchcard-commit-msg"
}
},
"release": {
"analyzeCommits": "punchcard-semantic-release/analyze",
"generateNotes": "punchcard-semantic-release/notes"
}
}