-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.73 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
{
"name": "accessibility-linter",
"version": "1.14.0",
"description": "Accessibility test a web page or web application",
"main": "lib/index.js",
"scripts": {
"lint": "eslint . --ext .js",
"mkbuild": "mkdir -p build",
"clean": "rm -f build/* build/.gitignore",
"build:standalone": "node lib/build/standalone | derequire > build/linter.js",
"uglify:standalone": "uglifyjs build/linter.js --source-map content=inline,url=inline | exorcist build/linter.min.js.map > build/linter.min.js",
"build:umd": "node lib/build/umd > build/umd.js",
"uglify:umd": "uglifyjs build/umd.js --source-map content=inline,url=inline | exorcist build/umd.min.js.map > build/umd.min.js",
"build:dev": "npm run mkbuild && npm run build:umd",
"build:all": "npm run build:standalone && npm run build:umd",
"gh-pages": "git checkout gh-pages && git merge master -X theirs && npm run build && echo \"!**\" > build/.gitignore && git add -A && git commit -m \"merge master and latest build\" && git push && git checkout master",
"prebuild": "npm run mkbuild && npm run clean && npm run lint",
"build": "npm run build:all && npm run uglify:standalone && npm run uglify:umd",
"watch": "npm run start & watch 'npm run build:dev' lib",
"start": "http-server -c-1"
},
"author": "Daniel Lewis",
"license": "ISC",
"devDependencies": {
"browserify": "^14.4.0",
"escape-html": "^1.0.3",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"exorcist": "^0.4.0",
"expect": "^1.20.2",
"glob": "^7.1.2",
"http-server": "^0.10.0",
"marked": "^0.3.6",
"mocha": "^3.4.2",
"strictify": "^0.2.0",
"uglify-es": "^3.0.18",
"watch": "^1.0.2"
}
}