-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (47 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (47 loc) · 1.22 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
{
"#": "Check you package.json with e.g. ~ http://package-json-validator.com/",
"private": true,
"name": "@nfreear/QA",
"description": "Dual-language continuous integration and Git hooks. ©The Open University (IET).",
"version": "1.0.0",
"homepage": "https://iet.open.ac.uk",
"keywords": [
"testing",
"quality",
"OpenUniversity",
"IET-OU"
],
"license": "MIT",
"bugs": "https://github.com/nfreear/QA/issues",
"repository": "https://github.com/nfreear/QA.git",
"author": "Nick Freear",
"engines": {
"node": ">= 8.11"
},
"dependencies": {},
"devDependencies": {
"csslint": "^1.0.5",
"husky": "^1.0.0-rc.13",
"mocha": "^5.2.0",
"semistandard": "^12.0.1"
},
"eslintConfig": {
"extends": "semistandard",
"overrides": [ {
"files": [ "test/*.js" ],
"globals": { "describe": false, "it": false }
} ]
},
"eslintIgnore": [ "vendor/" ],
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"scripts": {
"build": "echo 'E.g. browserify && uglifyjs && lessc && ...'",
"test": "eslint **/*.js && mocha && csslint test/*.css # && ...",
"fix": "semistandard --fix",
"pa11y-ci": "echo pa11y-ci ... not implemented yet!"
}
}