-
Notifications
You must be signed in to change notification settings - Fork 159
/
package.json
79 lines (79 loc) · 2.64 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
73
74
75
76
77
78
79
{
"name": "lyef-react-component",
"version": "1.1.2",
"description": "An opinionated boilerplate for reusable and declouped react components.",
"main": "dist/Main.js",
"scripts": {
"build": "npm run clean && npm run babel && npm run minify",
"babel": "./node_modules/.bin/babel src -d dist",
"minify": "./node_modules/.bin/uglifyjs -c -m -o dist/Main.min.js dist/Main.js",
"pub": "npm run build && npm publish",
"clean": "rimraf dist",
"start": "npm run storybook",
"storybook": "./node_modules/.bin/start-storybook -p 9001 -c ./storybook",
"build-storybook": "./node_modules/.bin/build-storybook -c ./storybook -o .out",
"deploy-storybook": "storybook-to-ghpages",
"test": "./node_modules/.bin/mocha --require tests/helpers/setup.js tests/specs/**/*.spec.js",
"test:tdd": "./node_modules/.bin/mocha --require tests/helpers/setup.js tests/specs/**/*.spec.js -w",
"test:coverage": "./node_modules/.bin/nyc --reporter=html --reporter=text ./node_modules/.bin/mocha tests/helpers/setup.js tests/specs/**/*.spec.js",
"lint": "./node_modules/.bin/eslint src",
"lint:fix": "./node_modules/.bin/eslint src --fix",
"prepush": "npm run lint && npm test"
},
"nyc": {
"exclude": [
"tests",
"dist"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lyef/lyef-react-component.git"
},
"keywords": [
"react",
"component",
"base"
],
"author": "lyef (http://lyef.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lyef/lyef-react-component/issues"
},
"homepage": "https://github.com/lyef/lyef-react-component#README",
"devDependencies": {
"@personare/react-storybook-decorator-github-corner": "^0.1.4",
"@storybook/react": "^3.1.5",
"@storybook/storybook-deployer": "^2.0.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.10.4",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.4",
"babel-preset-airbnb": "^2.0.0",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"husky": "^0.11.4",
"jsdom": "^9.4.1",
"mocha": "^2.5.3",
"nyc": "^7.0.0",
"raw-loader": "^0.5.1",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"uglify-js": "^2.7.0"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}