-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "o9n",
"version": "2.1.1",
"description": "A screen.orientation ponyfill 🖥",
"main": "index.js",
"scripts": {
"test": "npm run lint && karma start",
"build": "mkdir -p ./dist && browserify ./index.js -s o9n -o ./dist/o9n.js",
"lint": "eslint './**/*.js'",
"format": "eslint --fix './**/*.js'"
},
"testling": {
"browsers": [
"chrome/latest"
],
"files": "test/*.js"
},
"keywords": [
"screen",
"orientation",
"ponyfill",
"polyfill"
],
"author": "Christian Maniewski <[email protected]>",
"license": "MIT",
"devDependencies": {
"browserify": "^11.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"karma": "^0.13.10",
"karma-browserify": "^4.4.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-tap": "^1.0.3",
"karma-tape-reporter": "^1.0.3",
"lint-staged": "^10.1.3",
"prettier": "^2.0.5",
"tape": "^4.2.1"
},
"dependencies": {},
"repository": "https://github.com/chmanie/o9n.git",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix"
]
}
}