This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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": "@navjobs/upload",
"version": "3.2.0",
"description": "HOC that displays a file upload on clicking children",
"main": "dist/index.js",
"scripts": {
"jest": "jest --config tests/config.json",
"jest-u": "jest --config tests/config.json -u",
"test": "storyshots && npm run jest",
"test-ci": "storyshots && npm run jest && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build": "babel src -d dist",
"storybook": "start-storybook -p 6006",
"deploy-storybook": "storybook-to-ghpages",
"build-storybook": "build-storybook",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/navjobs/upload.git"
},
"keywords": [
"jest",
"react",
"file-upload",
"upload"
],
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/navjobs/upload/issues"
},
"homepage": "https://github.com/navjobs/upload#readme",
"peerDependencies": {
"react": ">=15.0 <= 16"
},
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"@kadira/storybook-addon-knobs": "^1.7.1",
"@kadira/storybook-addon-notes": "^1.0.1",
"@kadira/storybook-deployer": "^1.2.0",
"@kadira/storyshots": "^2.1.0",
"babel-cli": "^6.14.0",
"babel-jest": "^19.0.0",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"coveralls": "^2.12.0",
"enzyme": "^2.7.1",
"husky": "^0.13.3",
"jest": "^19.0.2",
"jsdom": "^9.12.0",
"lint-staged": "^3.4.0",
"prettier": "^0.22.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2"
}
}