forked from jsdelivr/bootstrapcdn
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.04 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.04 KB
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
{
"name": "bootstrapcdn",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/MaxCDN/bootstrapcdn.git"
},
"private": true,
"scripts": {
"clean": "rm -rf ./node_modules/",
"nyc": "nyc",
"eslint": "eslint . --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives",
"puglint": "pug-lint views/",
"pug-lint": "npm run puglint",
"lint": "npm-run-all --continue-on-error --parallel eslint puglint",
"mocha": "cross-env NODE_ENV=test ENABLE_CRAWLING=true mocha",
"mocha:only-functional": "npm run mocha -- --reporter progress ./test/functional_test.js",
"mocha:only-functional:dev": "cross-env BCDN_HEADERS=debug npm run mocha:only-functional",
"mocha:only-functional:prod": "cross-env BCDN_HEADERS=production npm run mocha:only-functional",
"mocha:no-functional": "npm run mocha -- --invert --grep \"functional\"",
"dev": "nodemon --ext css,js,pug,svg,png,yml --ignore test --ignore cdn --exec \"npm run server\"",
"watch": "npm run dev",
"server": "node bin/www.js",
"start": "cross-env NODE_ENV=production npm run server",
"all": "npm run lint && npm run mocha:no-functional && npm run mocha:only-functional:dev && npm run mocha:only-functional:prod",
"all-with-coverage": "npm run lint && nyc npm run mocha:no-functional && npm run mocha:only-functional:dev && npm run mocha:only-functional:prod",
"test": "npm run lint && npm run mocha:no-functional",
"test-with-coverage": "npm run lint && nyc npm run mocha:no-functional",
"purge-latest": "bash ./scripts/purge.sh",
"bootlint": "node ./scripts/update_bootlint.js",
"bootstrap": "node ./scripts/update_bootstrap.js",
"bootswatch": "node ./scripts/update_bootswatch.js",
"integrity": "node ./scripts/integrity.js",
"sri": "node ./scripts/sri.js",
"wp-plugin": "node ./scripts/wp-plugin.js"
},
"dependencies": {
"compression": "^1.7.4",
"cross-env": "^6.0.3",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-sitemap": "^1.8.0",
"express-sslify": "^1.2.0",
"helmet": "^3.21.2",
"js-yaml": "^3.13.1",
"jstransformer-clean-css": "^2.1.0",
"mime": "^2.4.4",
"morgan": "^1.9.1",
"pug": "^2.0.4",
"rollbar": "^2.14.4",
"semver": "^6.3.0",
"serve-favicon": "^2.5.0",
"sri-toolbox": "^0.2.0",
"staticify": "^3.3.4",
"uuid": "^3.3.3"
},
"devDependencies": {
"bootlint": "1.0.0",
"bootstrap": "4.3.1",
"bootswatch": "4.3.1",
"escape-string-regexp": "^2.0.0",
"eslint": "^6.6.0",
"fs-extra": "^8.1.0",
"fs-walk": "0.0.2",
"html-validator": "^5.0.0",
"htmlencode": "0.0.4",
"mocha": "^6.2.2",
"mockdate": "^2.0.5",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"pug-lint": "^2.6.0",
"pug-lint-config-clock": "^2.0.0",
"request": "^2.88.0"
},
"engines": {
"node": "12.x"
},
"nyc": {
"include": [
"**/*.js"
],
"reporter": [
"html",
"lcov",
"text-summary"
]
}
}