-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
72 lines (72 loc) · 1.98 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
{
"name": "incompose",
"version": "5.0.1",
"description": "An inferno utility belt for function components and higher-order components",
"browserslist": "> 0.25%, not dead",
"repository": {
"type": "git",
"url": "git://github.com/zanettin/incompose.git"
},
"main": "dist/index.js",
"keywords": [
"inferno",
"recompose",
"functional",
"component",
"higher",
"order",
"component",
"hoc"
],
"author": {
"name": "Roman Zanettin",
"email": "[email protected]",
"url": "http://github.com/zanettin"
},
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test jest --no-cache",
"build": "NODE_ENV=production babel src --out-dir dist",
"prepublish": "npm run build",
"lint": "eslint src/**",
"cspell": "cspell src/**/*.js tests/**/*.js docs/**/*.md --config ./cSpell.json",
"ci": "npm run test && npm run lint && npm run cspell",
"prettier": "./node_modules/.bin/prettier --write './!(dist|.vscode)/**/*.js'"
},
"dependencies": {
"change-emitter": "^0.1.6",
"symbol-observable": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-inferno": "^6.0.5",
"babel-plugin-syntax-jsx": "^6.18.0",
"cspell": "^4.0.23",
"eslint": "^6.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-inferno": "^7.11.0",
"inferno": "7.1.13",
"inferno-create-class": "7.1.13",
"jest": "^24.8.0",
"jsdom": "^15.1.1",
"prettier": "^1.18.2"
},
"contributors": [
{
"name": "Carsten Lamm",
"email": "[email protected]",
"url": "https://github.com/FQ400"
}
],
"peerDependencies": {
"inferno": "5.0.0",
"inferno-create-class": "5.0.0"
}
}