-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.17 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-unify",
"version": "1.0.9",
"description": "Unify state and props, decouple render() and update state synchronously",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"format": "prettier --write src/**/*.{ts,tsx,js,jsx}",
"format:check": "prettier --list-different src/**/*.{ts,tsx}",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/osi-oswald/react-unify.git"
},
"keywords": [
"react",
"decorators",
"synchronous",
"state",
"prop",
"children",
"stateless",
"render"
],
"author": "Patrick Oswald <osi.oswald@gmail.com> (https://github.com/osi-oswald)",
"license": "MIT",
"bugs": {
"url": "https://github.com/osi-oswald/react-unify/issues"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.jsx?$": "babel-jest"
},
"globals": {
"ts-jest": {
"skipBabel": true,
"tsConfigFile": "tsconfig.json"
}
},
"testRegex": "\\.test\\.(j|t)sx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"peerDependencies": {
"react": "16.x.x"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^9.6.5",
"@types/pretty-format": "^20.0.0",
"@types/react": "^16.3.11",
"@types/react-dom": "^16.0.5",
"@types/react-test-renderer": "^16.0.1",
"babel-core": "6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "osi-oswald/babel-plugin-transform-decorators-legacy#v1.4.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"jest": "^22.4.3",
"prettier": "^1.12.0",
"react-test-renderer": "^16.3.2",
"ts-jest": "^22.4.3",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-react": "^3.5.1",
"typescript": "^2.8.1"
},
"npmName": "react-unify",
"sideEffects": false
}