forked from patternfly/patternfly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.61 KB
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
{
"name": "patternfly-react",
"version": "0.0.1",
"description": "This library provides a set of common React components for use with the PatternFly reference implementation.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/patternfly/patternfly-react.git"
},
"keywords": [
"react",
"patternfly"
],
"author": "Red Hat",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/patternfly/patternfly-react/issues"
},
"homepage": "https://github.com/patternfly/patternfly-react#readme",
"dependencies": {
"classnames": "^2.2.5"
},
"devDependencies": {
"@kadira/react-storybook-addon-info": "^3.3.0",
"@kadira/storybook": "^2.21.0",
"@kadira/storybook-addon-knobs": "^1.7.1",
"@kadira/storybook-deployer": "^1.2.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"jest": "^19.0.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"standard": "^9.0.1"
},
"peerDependencies": {
"react": "^15.0.0",
"patternfly": "~3.3"
},
"scripts": {
"build": "babel src --out-dir lib --ignore test.js",
"lint": "standard",
"prepublish": "npm run build",
"test": "standard && jest",
"test:watch": "jest --watchAll",
"storybook": "start-storybook -c storybook -p 6006",
"build-storybook": "build-storybook -c storybook -o .out",
"storybook:deploy": "storybook-to-ghpages"
}
}