-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 KB
/
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
44
45
46
47
48
49
50
{
"name": "agnostic-axe",
"version": "3.0.3",
"description": "Framework agnostic accessibility auditing with axe-core",
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/standalone.mjs",
"source": "src/index.mjs",
"scripts": {
"build": "npm run build:dependencies && npm run build:standalone",
"build:dependencies": "npx microbundle -f es,cjs",
"build:standalone": "npx microbundle --external none -f es -o dist/standalone.js",
"dev": "npx microbundle --watch",
"prepublishOnly": "npm run build",
"test": "node --experimental-modules ./__tests__/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://laurajuliette@github.com/juliettepretot/agnostic-axe.git"
},
"keywords": [
"axe",
"accessibility",
"axe-core",
"audit",
"reporter"
],
"author": "LF Juliette Pretot",
"license": "MIT",
"bugs": {
"url": "https://github.com/juliettepretot/agnostic-axe/issues"
},
"homepage": "https://github.com/juliettepretot/agnostic-axe#readme",
"devDependencies": {
"clean-slate-lint": "^1.0.9",
"jasmine": "^3.5.0",
"jasmine-console-reporter": "^3.1.0",
"microbundle": "^0.11.0"
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/clean-slate-lint",
"pre-rewrite": "./node_modules/.bin/clean-slate-lint"
}
},
"dependencies": {
"axe-core": "^3.5.1",
"idlize": "^0.1.1"
}
}