-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.83 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
{
"name": "linked-store",
"version": "0.2.8",
"description": "tiny state-management library inspired by recoil",
"scripts": {
"format": "prettier src/**/*.ts --write",
"validate": "tsc -b && eslint src/**/*.ts",
"set:types": "node ./scripts/copy-types.js",
"build": "rollup -c && npm run set:types",
"publish": "npm publish --access public",
"publish:package": "npm run format && npm run build && npm run publish",
"test": "jest",
"test:CI": "jest && coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eLeontev/linked-store.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eLeontev/linked-store/issues"
},
"homepage": "https://github.com/eLeontev/linked-store#readme",
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-typescript": "^5.0.2",
"@types/jest": "^26.0.10",
"@types/mocha": "^8.0.3",
"@types/node": "^14.0.26",
"@types/react": "^16.9.43",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel": "^6.23.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.4.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"rollup": "^2.23.0",
"rollup-plugin-terser": "^6.1.0",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"peerDependencies": {
"react": "^16.13.1"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts"
}