-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.97 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
{
"name": "react-unistore",
"version": "0.0.0-development",
"description": "778b connector between React and unistore",
"keywords": [
"unistore",
"react",
"state machine",
"redux"
],
"main": "es5/index.js",
"module": "es6/index.js",
"modules.root": "es6",
"repository": "[email protected]:jahredhope/react-unistore.git",
"author": "Jahred Hope <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "npm run build:es6 && npm run build:es5",
"build:es6": "rm -rf es6 && tsc --declaration --target es6 --outDir es6",
"build:es5": "rm -rf es5 && tsc --declaration --outDir es5",
"lint.prettier": "prettier --list-different **/*.{mjs,js,ts,tsx}",
"lint.tslint": "tslint -c tslint.json --project tsconfig.json",
"fix.lint": "tslint -c tslint.json --project tsconfig.json --fix",
"lint.type": "tsc --noEmit --project tsconfig.json",
"lint": "npm run lint.prettier && npm run lint.type && npm run lint.tslint",
"format": "prettier --write **/*.{mjs,js,ts,tsx}",
"release": "semantic-release",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"prepublish": "npm run build",
"print-file-size": "node print-file-size.js"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"unistore": ">=3.4.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.3",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"eslint": "^6.2.2",
"file-size": "^1.0.0",
"glob": "^7.1.4",
"gzip-size": "^5.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"semantic-release": "^15.13.24",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.6.2",
"uglify-es": "^3.3.9",
"unistore": "^3.4.1"
}
}