-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
51
52
53
54
{
"name": "@pencil.js/accessibility",
"version": "0.1.0",
"description": "Accessibility package for Pencil.js",
"main": "src/index.js",
"unpkg": "dist/accessibility.min.js",
"jsdelivr": "dist/accessibility.min.js",
"scripts": {
"lint": "eslint **/*.js",
"test": "ava",
"play": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"prepublishOnly": "npm run build"
},
"ava": {
"require": [
"esm",
"@pencil.js/test-environment"
]
},
"eslintConfig": {
"extends": "@gmartigny/eslint-config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pencil-js/accessibility.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"pencil.js",
"a11y"
],
"author": "GMartigny <guillaume.martigny@gmail.com> (https://www.guillaume-martigny.fr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pencil-js/accessibility/issues"
},
"homepage": "https://github.com/pencil-js/accessibility#readme",
"peerDependencies": {
"pencil.js": "> 1"
},
"devDependencies": {
"@gmartigny/eslint-config": "^1.3.1",
"@pencil.js/test-environment": "^1.0.0",
"ava": "^2.3.0",
"eslint": "^6.3.0",
"esm": "^3.2.25",
"pencil.js": "^1.10.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8"
}
}