-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.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": "omniscient",
"version": "4.2.0",
"description":
"A library providing an abstraction for React components for passing the same data structure through the entire component flow using cursors and immutable data structures.",
"main": "component.js",
"directories": {
"example": "example"
},
"dependencies": {
"create-react-class": "^15.7.0",
"lodash.isequal": "^3.0.4",
"object-assign": "^4.1.1"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"devDependencies": {
"bithound": "^1.7.0",
"codecov": "^2.3.0",
"dox": "^0.9.0",
"doxme": "git://github.com/mikaelbr/doxme#dev",
"husky": "^0.14.3",
"immstruct": "^2.0.0",
"immutable": "^3.8.1",
"jest": "^21.2.1",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4",
"react": ">=16.0.0",
"react-dom": ">=16.0.0",
"react-test-renderer": "^16.0.0",
"test-all-versions": "^3.1.1",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0"
},
"scripts": {
"test": "tav",
"jest": "jest",
"codecov": "codecov",
"test-watch": "jest --watch",
"dist": "node makeBundle.js",
"build-docs":
"cat component.js shouldupdate.js cached.js | dox -r | doxme > api.md",
"precommit": "lint-staged",
"bithound": "bithound check [email protected]:omniscientjs/omniscient.git"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git://github.com/omniscientjs/omniscient.git"
},
"keywords": ["quiescent", "react", "immutable"],
"author": "@torgeir,@mikaelbr",
"license": "MIT",
"bugs": {
"url": "https://github.com/omniscientjs/omniscient/issues"
},
"homepage": "https://github.com/omniscientjs/omniscient",
"jest": {
"testMatch": ["<rootDir>/__tests__/**/*.test.js"],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"prettier": {
"tabWidth": 2,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 80
}
}