-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.22 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
69
70
71
72
73
74
75
76
77
78
{
"name": "memconfig",
"version": "1.0.0",
"description": "Manage project-wide configuration from an immutable in-memory store, using a friendly interface powered by lodash's get/set path-like selectors",
"keywords": [
"configuration",
"config",
"node",
"browser",
"manager"
],
"source": "src/index.ts",
"main": "dist/memconfig.js",
"unpkg": "dist/memconfig.umd.js",
"module": "dist/memconfig.module.js",
"exports": "./dist/memconfig.modern.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Frondor <[email protected]>",
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"prettier:fix": "prettier 'src' 'test' --write",
"lint": "eslint . --ext .js,.ts --cache",
"lint:fix": "npm run lint -- --fix",
"build": "microbundle src/index.ts --compress",
"test": "jest --coverage",
"preversion": "git merge origin/master && git push -u origin HEAD && npm ci && npm run lint && npm run build && npm test",
"postversion": "git push && git push --tags",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/lodash": "4.14.170",
"@types/node": "15.12.2",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"husky": "6.0.0",
"jest": "27.0.4",
"jest-config": "27.0.4",
"lint-staged": "11.0.0",
"microbundle": "0.13.3",
"prettier": "2.3.1",
"ts-jest": "27.0.3",
"typescript": "4.3.2"
},
"dependencies": {
"lodash": "4.17.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Frondor/memconfig.git"
},
"bugs": {
"url": "https://github.com/Frondor/memconfig/issues"
},
"homepage": "https://github.com/Frondor/memconfig#readme",
"lint-staged": {
"*.{js,ts}": [
"npm run prettier:fix",
"npm run lint:fix"
]
}
}