-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.22 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.22 KB
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
87
88
89
90
91
{
"name": "omreact",
"version": "0.0.5",
"description": "Purely functional React components with local state",
"license": "MIT",
"repository": "tokland/omreact",
"author": {
"name": "Arnau Sanchez",
"url": "https://stackoverflow.com/users/188031/tokland"
},
"engines": {
"node": ">=8"
},
"files": [
"index.js",
"component.js",
"commands.js"
],
"scripts": {
"precommit": "npm run code-quality",
"test": "jest",
"lint": "eslint 'src/**/*.js'",
"code-quality": "npm run lint && npm run test",
"build": "babel src -d . --source-maps --ignore 'src/**/*.test.js'",
"prepublish": "npm run build",
"release": "npm run code-quality && npm run build && npm publish"
},
"main": "index.js",
"keywords": [
"react",
"functional",
"state",
"reducer",
"immutable",
"elm"
],
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.1",
"lodash": "^4.17.10",
"memoize-weak": "^1.0.2",
"prop-types": "^15.6.2",
"shouldcomponentupdate-children": "^1.1.0"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "8",
"babel-jest": "^23.4.2",
"create-react-class": "^15.6.3",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.5.0",
"eslint-plugin-jest": "^21.22.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.5.0",
"jest-chain": "^1.0.3",
"jest-prop-type-error": "^1.1.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"regenerator-runtime": "^0.12.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/config/setupTests.js",
"collectCoverageFrom": [
"src/**/*.js"
],
"setupFiles": [
"jest-prop-type-error"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
}
}