forked from MatthewLarner/cross-domain-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.74 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
{
"name": "cross-domain-storage",
"version": "2.0.7",
"description": "Cross domain local storage",
"main": "./",
"scripts": {
"test": "node tests",
"lint": "eslint . --fix --ext .jsx --ext .js",
"build": "babel source --presets babel-preset-es2015 --out-dir distribution",
"prepublish": "npm run build"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatthewLarner/cross-domain-storage.git"
},
"author": "Matt Larner <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/MatthewLarner/cross-domain-storage/issues"
},
"homepage": "https://github.com/MatthewLarner/cross-domain-storage#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^16.5.0",
"crel": "^4.2.1",
"doc-js": "^1.3.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.10",
"open": "^7.0.3",
"prettier": "^2.0.2",
"static-server": "^2.0.2",
"tape": "^4.13.2",
"watchify": "^3.11.1"
}
}