forked from h5bp/server-configs-apache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"author": "The H5BP Team",
"description": "Boilerplate configurations for the Apache HTTP server",
"devDependencies": {
"@alrra/travis-scripts": "^3.0.1",
"eslint": "^4.19.1",
"mocha": "^5.1.0"
},
"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.sh",
"build:dist": "npm run build -- dist/.htaccess htaccess.conf",
"build:test": "npm run build -- test/fixtures/.htaccess test/htaccess_fixture.conf",
"build:user": "test/test_userbuild.sh",
"lint": "eslint \"**/*.js\"",
"mocha": "mocha --reporter spec --timeout 5000 test/test_suite.js",
"test": "npm run lint && npm run build:test && npm run build:user && npm run mocha"
},
"version": "3.0.0"
}