-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.46 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
{
"name": "node-sitefile",
"description": "Bootstrap Express webserver for misc. resources using Sitefile",
"version": "0.0.6-dev",
"homepage": "https://github.com/dotmpe/node-sitefile",
"author": {
"name": "B. van Berkum",
"email": "dev@dotmpe.com"
},
"keywords": [
"publishing",
"hypertext",
"restructuredtext",
"docutils"
],
"repository": {
"type": "git",
"url": "https://github.com/dotmpe/node-sitefile.git"
},
"bugs": {
"url": "https://github.com/dotmpe/node-sitefile/issues"
},
"license": "GPL-3.0",
"licenses": [
{
"type": "GPL-3.0",
"url": "https://github.com/dotmpe/node-sitefile/raw/master/LICENSE"
}
],
"contributors": [],
"engines": {
"node": ">= 0.12.0",
"npm": "2.7.x"
},
"main": "./bin/sitefile.coffee",
"bin": {
"sitefile": "./bin/sitefile.coffee"
},
"scripts": {
"install": " ./configure && grunt build-test",
"test": "./configure && grunt test",
"start": "NODE_ENV=development coffee bin/sitefile.coffee",
"dev": "nodemon bin/sitefile.coffee -w Sitefile.yaml -w lib/ -w bin/",
"strict": "nodemon bin/sitefile.coffee --use_strict -w Sitefile.yaml -w lib/ -w bin/",
"check": "grunt check",
"build": "grunt build",
"vulnerabilities": "snyk test",
"echo": "echo 'Note that npm run accept arguments (try npm run echo foo):'",
"cruft": "./tools/tags.sh",
"update-spec": "sh ./tools/update-spec.sh",
"build-new": "gulp server-build",
"mocha": "mocha --compilers coffee:coffee-script/register test/mocha/*.coffee",
"mocha-test": "mocha --compilers coffee:coffee-script/register",
"cucumber-js": "./node_modules/.bin/cucumber-js --compilers coffee:coffee-script/register test/cucumber-js/*.coffee",
"check-version": "git-versioning check",
"check-docs": "sh ./tools/check-branch-docs.sh",
"src-tree": "tree -I 'node_modules|build|components'",
"src-files": "cat .gitignore | sed -e 's/\\(.*\\)/-not -path \"*\\1*\" /' | xargs find ./ -type f -not -path '*/.git/*' ",
"src-loc": "cat .gitignore | grep -v '^\\s*$' | sed -e 's/\\(.*\\)/-not -path \"*\\1*\" /' | xargs find ./ -type f -not -path '*/.git/*' -not -path '*.log' | xargs cat | grep -v '^\\s*$' | wc -l | awk '{print $1}'",
"git-loc-all": "git ls-files | grep -v plantuml.jar | xargs cat | wc -l ",
"git-loc": "git ls-files | grep -v plantuml.jar | xargs cat | grep -v '^\\s*$' | wc -l ",
"git-src": "git ls-files | grep -v plantuml.jar",
"dep-local": "echo node_modules/* | xargs basename | sort -u | awk '{print $1}'",
"dep-local-all": "find node_modules/ -iname node_modules | xargs /bin/ls -w1 | grep -v '^$' | grep -v 'node_modules' | sort -u | awk '{print $1}'"
},
"dependencies": {
"bluebird": "^3.4.6",
"chalk": "^1.1.3",
"escape-html": "^1.0.1",
"express": "^4.14.1",
"glob": "^7.1.0",
"js-yaml": "^3.6.1",
"lodash": "^4.16.1",
"mime-types": "^2.1.13",
"minimatch": "^3.0.3",
"nodelib-mpe": "^0.0.6",
"qs": "6.3.0",
"request-promise": "^4.1.1",
"semver": "^5.3.0"
},
"optionalDependencies": {
"bookshelf": "^0.10.2",
"bookshelf-api": "^1.7.0",
"knex": "^0.12.3",
"markdown": "^0.5.0",
"node-sass": "^4.0.0",
"pug": "^2.0.0-beta6",
"sqlite3": "^3.1.6",
"stylus": "^0.54.5"
},
"devDependencies": {
"ajv": "^4.11.2",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"chai-webdriver": "^1.2.0",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.12.2",
"coffeelint": "^1.15.7",
"cucumber": "^2.0.0-rc.6",
"gherkin": "^4.0.0",
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-coffeelint": "^0.0.16",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-docco": "^0.5.0",
"grunt-exec": "^0.4.6",
"grunt-mocha-test": "^0.12.7",
"grunt-sass": "^1.2.1",
"grunt-webpack": "~1.0.0",
"grunt-yamllint": "^0.2.0",
"gulp": "latest",
"gulp-chmod": "^2.0.0",
"gulp-header": "^1.8.8",
"gulp-rename": "latest",
"jquery": "^3.1.1",
"json-loader": "latest",
"load-grunt-config": "latest",
"load-grunt-tasks": "latest",
"mocha": "^3.2.0",
"path": "latest",
"pm2": "^2.3.0",
"pmx": "^0.6.8",
"pug-loader": "latest",
"rename-loader": "^1.0.0",
"request": "latest",
"selenium-webdriver": "~2.53.0",
"sinon": "^1.17.6",
"source-map-support": "^0.4.10",
"text-table": "latest",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
}
}