-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "@codewell/state-persistor",
"version": "1.0.0",
"description": "State persistor for front end applications",
"main": "index.js",
"scripts": {
"test": "npm run release && jest",
"build": "rollup --config",
"release": "npm run build:dev && npm run build:prod",
"build:prod": "NODE_ENV=production rollup -c",
"build:dev": "NODE_ENV=development rollup -c",
"dry-release": "npm run release && npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codewell/state-persistor.git"
},
"keywords": [
"state",
"localstorage",
"persist"
],
"author": "Filip Johansson",
"license": "MIT",
"bugs": {
"url": "https://github.com/codewell/state-persistor/issues"
},
"homepage": "https://github.com/codewell/state-persistor#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@rollup/plugin-replace": "^2.3.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}