-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "relite",
"version": "3.0.2",
"description": "a redux-like library for managing state with simpler api",
"main": "index.js",
"typings": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"util.d.ts",
"util.js"
],
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"build": " tsc",
"prepare": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lucifier129/relite.git"
},
"keywords": [
"redux",
"react",
"state",
"functional"
],
"author": "Jade Gu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lucifier129/relite/issues"
},
"homepage": "https://github.com/Lucifier129/relite#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3"
}
}