-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "reuni",
"version": "0.1.0-beta.2",
"description": "Dynamic state container for JavaScript apps",
"scripts": {
"prettier": "prettier --write \"**/*.js\" \"**/*.jsx\" \"**/*.tsx\" \"**/*.ts\"",
"build": "node scripts/build.js",
"test": "yarn jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hapood/reuni.git"
},
"keywords": [
"reuni",
"immutable",
"observable",
"react",
"reactjs"
],
"author": "Hapood Wang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hapood/reuni/issues"
},
"homepage": "https://github.com/hapood/reuni#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^22.2.0",
"jest": "^22.4.2",
"prettier": "^1.11.1",
"rollup": "^0.56.4",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-node-resolve": "^3.0.3",
"ts-jest": "^22.4.1",
"tslib": "^1.9.0",
"typescript": "^2.7.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.test.(ts|js)"
],
"moduleNameMapper": {
"^src$": "<rootDir>/src/index.ts"
},
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!src/**/__tests__/**"
]
}
}