This repository has been archived by the owner on Sep 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.2 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
{
"name": "sagen-core",
"version": "0.4.5",
"description": "Management global state with out provider",
"main": "index.js",
"module": "index.esm.js",
"sideEffects": false,
"repository": "https://github.com/jungpaeng/sagen-core.git",
"author": "jungpaeng <meis1541@naver.com> (https://github.com/jungpaeng)",
"license": "MIT",
"homepage": "https://github.com/jungpaeng/sagen-core",
"bugs": "https://github.com/jungpaeng/sagen-core/issues",
"scripts": {
"eslint": "eslint --fix \"src/**/*.{js,ts}\"",
"eslint-examples": "eslint --fix \"example/src/**/*.{js,ts}\"",
"eslint:ci": "eslint \"{src,example/src}/**/*.{js,ts}\"",
"test": "jest",
"test:dev": "jest --watch --no-coverage",
"test:coverage:watch": "jest --watch",
"prebuild": "rimraf dist",
"build": "rollup -c",
"postbuild": "yarn copy && yarn edit-json",
"copy": "copyfiles -f package.json readme.md LICENSE dist",
"edit-json": "json -I -f dist/package.json -e \"this.private=false; this.devDependencies=undefined; this.optionalDependencies=undefined; this.scripts=undefined; this.prettier=undefined;\""
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-regenerator": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/plugin-transform-typescript": "^7.13.0",
"@babel/preset-env": "^7.13.10",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/jest": "^26.0.21",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"json": "^10.0.0",
"prettier": "^2.2.1",
"rollup": "^2.41.2",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
},
"peerDependencies": {},
"keywords": [
"frontend",
"front-end",
"vanillajs",
"state",
"manager",
"management",
"store",
"state management",
"flux"
]
}