-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.55 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "offcanvas",
"version": "3.3.0",
"description": "Offcanvas menu library for browser",
"main": "index.js",
"module": "dist/offcanvas.js",
"scripts": {
"start": "scriptkit",
"build": "scriptkit build",
"dev": "scriptkit dev",
"lint": "eslint index.js && stylelint offcanvas.css",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run lint && scriptkit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstandthird/offcanvas.git"
},
"keywords": [
"browser",
"menu",
"mobile"
],
"author": "First+Third <code@firstandthird.com> (http://firstandthird.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/firstandthird/offcanvas/issues"
},
"homepage": "https://github.com/firstandthird/offcanvas#readme",
"dependencies": {
"domassist": "^2.3.1"
},
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-firstandthird": "^6.0.2",
"eslint-plugin-import": "^2.22.1",
"scriptkit": "^3.0.0",
"stylelint": "13.8.0",
"stylelint-config-firstandthird": "^1.2.0"
},
"scriptkit": {
"test": {
"enabled": false
},
"serve": {
"enabled": true
},
"files": {
"dist/offcanvas.js": "index.js"
},
"scripts": {
"babel": {
"exclude": [
"node_modules/tape-rollup/*"
]
}
}
},
"stylelint": {
"extends": "stylelint-config-firstandthird"
},
"eslintConfig": {
"extends": "firstandthird",
"env": {
"browser": true
}
}
}