-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.32 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": "punchcard-demo",
"description": "Demonstration Repository for Punchcard CMS",
"main": "index.js",
"scripts": {
"prestart": "npm run build",
"pretest": "npm run lint",
"test": "NODE_ENV=test npm run nyc",
"posttest": "npm run build",
"start": "forever -o out.log index.js ",
"lint": "gulp lint",
"build": "gulp build",
"ava:watch": "NODE_ENV=test NODE_CONFIG_DIR=../config ava --watch",
"ava": "NODE_ENV=test NODE_CONFIG_DIR=../config ava",
"nyc": "NODE_ENV=test NODE_CONFIG_DIR=../config 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": {
"url": "https://github.com/punchcard-cms/demo.git",
"type": "git"
},
"author": "Sam Richard <sam@snug.ug>",
"license": "Apache-2.0",
"dependencies": {
"config": "^1.24.0",
"forever": "^0.15.3",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-imagemin": "^3.1.1",
"gulp-uglify": "^2.0.0",
"input-plugin-file": "^1.3.3",
"input-plugin-number": "^0.2.1",
"input-plugin-text": "^0.1.3",
"input-plugin-textarea": "^0.1.3",
"lodash": "^4.17.0",
"punchcard-cms": "2.42.23",
"punchcard-runner": "^2.1.11"
},
"devDependencies": {
"ava": "^0.16.0",
"coveralls": "^2.11.15",
"eslint-config-punchcard": "^1.1.6",
"ghooks": "^1.3.2",
"nyc": "^9.0.1",
"punchcard-commit-msg": "^1.0.1",
"punchcard-semantic-release": "^2.0.2",
"punchcard-shared-tests": "^1.3.2",
"reparo": "^1.1.1-0",
"semantic-release": "^4.3.5",
"sqlite3": "^3.1.8",
"supertest": "^2.0.1"
},
"nyc": {
"exclude": [
"tests/**/*",
"config/**/*",
"public/**/*",
"Gulpfile.js",
"coverage"
]
},
"ava": {
"files": [
"tests/*.js"
],
"failFast": false,
"tap": false
},
"config": {
"ghooks": {
"commit-msg": "punchcard-commit-msg"
}
},
"release": {
"analyzeCommits": "punchcard-semantic-release/analyze",
"generateNotes": "punchcard-semantic-release/notes"
},
"engines": {
"node": "^6"
}
}