forked from h5bp/server-configs-apache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 977 Bytes
/
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
{
"author": "The H5BP Team",
"description": "Boilerplate configurations for the Apache HTTP server",
"devDependencies": {
"@alrra/travis-scripts": "^3.0.1",
"eslint": "^4.10.0",
"mocha": "^4.0.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"mocha": true
},
"extends": "eslint:recommended"
},
"eslintIgnore": [
"test/fixtures/**"
],
"files": [
"dist"
],
"homepage": "https://github.com/h5bp/server-configs-apache",
"keywords": [
"apache",
"boilerplate",
"configs",
"configurations",
"h5bp",
"server",
"template"
],
"license": "MIT",
"name": "apache-server-configs",
"repository": "h5bp/server-configs-apache",
"scripts": {
"build": "bin/build/build.sh",
"lint": "eslint \"**/*.js\"",
"mocha": "mocha --reporter spec --timeout 5000 test/test_suite.js",
"test": "npm run lint && npm run build && npm run mocha"
},
"version": "2.15.0"
}