-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
65 lines (65 loc) · 1.69 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
{
"name": "react-lodash",
"version": "0.1.2",
"description": "Lodash as React components",
"main": "src/index.js",
"scripts": {
"generate": "node generate",
"babel": "babel src -d lib",
"build": "npm run generate && npm run babel",
"dev": "cross-env NODE_ENV=development npm run build",
"lint": "eslint . --ignore-path .gitignore",
"fix": "npm run lint -- --fix && prettier-markdown README.md",
"pretest": "npm run build",
"test": "jest",
"prepublishOnly": "npm test && pkg-ok"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/react-lodash.git"
},
"keywords": [],
"author": "Typicode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typicode/react-lodash/issues"
},
"homepage": "https://github.com/typicode/react-lodash#readme",
"dependencies": {
"lodash": "^4.17.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"common-tags": "^1.8.0",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.7.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"jsdoc-to-markdown": "^4.0.1",
"make-dir": "^1.3.0",
"pkg-ok": "^2.3.1",
"prettier": "^1.14.3",
"prettier-markdown": "^0.1.8",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.5.2",
"request": "^2.88.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}