-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.72 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-easter",
"version": "1.0.6",
"description": "Easily add easter eggs to your React app",
"main": "src/Component.js",
"scripts": {
"test": "NODE_ENV=test jest -u --no-cache --config .jestrc",
"test:coverage": "NODE_ENV=test jest --coverage --no-cache --config .jestrc",
"lint": "eslint --config .eslintrc --ext .js .",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"codeclimate": "cat ./coverage/lcov.info | codeclimate-test-reporter",
"test:report": "npm run coveralls && npm run codeclimate",
"validate": "npm run lint && npm run test:coverage",
"prepush": "npm run validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devlato/react-easter.git"
},
"keywords": [
"react",
"easter",
"eggs",
"easter egg",
"konami",
"cheat code"
],
"author": "devlato <npm@devlato.com> (http://devlato.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/devlato/react-easter/issues"
},
"homepage": "https://github.com/devlato/react-easter#readme",
"files": [
"package.json",
"README.md",
".gitignore",
".editorconfig",
"src"
],
"devDependencies": {
"chai": "^3.5.0",
"codeclimate-test-reporter": "0.4.0",
"coveralls": "2.11.15",
"enzyme": "^2.7.1",
"eslint": "3.14.1",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"husky": "0.13.1",
"jest": "^19.0.2",
"react-addons-test-utils": "^15.4.2",
"sinon": "^1.17.7"
},
"dependencies": {
"bluebird": "3.4.7",
"lodash": "^4.17.4",
"react": "15.4.2",
"react-dom": "^15.4.2",
"react-shortcut": "1.0.6"
},
"engines": {
"node": ">= 4",
"npm": ">= 2"
}
}