This repository was archived by the owner on Apr 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.92 KB
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
69
70
71
72
73
74
75
76
{
"scripts": {
"build": "babel src/shelveit.js -o dist/bundle.js",
"commit": "git-cz",
"coverage": "flow coverage",
"flow": "flow check",
"lint": "eslint . && stylelint *.css",
"start": "node index.js",
"test:unit": "jest",
"test": "npm run lint && npm run test:unit",
"semantic-release": "semantic-release"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-jest": "^21.15.1",
"flow-bin": "^0.68.0",
"husky": "^1.0.0-rc.1",
"jest": "^22.4.3",
"prettier-eslint": "^8.8.1",
"semantic-release": "^15.3.0",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run flow && npm run test:unit"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"name": "shelveit",
"version": "0.0.0-development",
"description": "state persistence in json, yaml, toml, or ini files, optionally encrypted",
"main": "dist/bundle.js",
"dependencies": {
"fs-extra": "^6.0.0",
"globby": "^8.0.1",
"ini": "^1.3.5",
"js-yaml": "^3.11.0",
"lodash": "^4.17.10",
"toml-j0.4": "^1.1.1",
"tomlify-j0.4": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alexgagnon/shelveit.git"
},
"keywords": [
"shelve",
"state",
"store",
"persistence",
"yaml",
"toml",
"json",
"ini"
],
"author": "alexgagnon",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexgagnon/shelveit/issues"
},
"homepage": "https://github.com/alexgagnon/shelveit#readme"
}