-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.43 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
{
"name": "emerald-js-ui",
"version": "0.0.32",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage && codecov",
"prepublish": "rimraf lib/ && npm run babel-prepublish && npm run flow-prepublish",
"babel-prepublish": "./node_modules/.bin/babel-node scripts/copy-files.js && ./node_modules/.bin/babel src/ -d lib --ignore test.js",
"flow-prepublish": "./node_modules/.bin/flow-copy-source src lib -i '**/*.test.js'",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook-static": "build-storybook -c .storybook -o docs",
"lint": "eslint src",
"flow": "flow",
"start": "npm run storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ETCDEVTeam/emerald-js-ui.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ETCDEVTeam/emerald-js-ui/issues"
},
"homepage": "https://github.com/ETCDEVTeam/emerald-js-ui#readme",
"devDependencies": {
"@storybook/addon-actions": "^3.2.17",
"@storybook/react": "^3.2.17",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.61.0",
"flow-copy-source": "^1.2.1",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"jest": "^21.2.1",
"raf": "^3.4.0",
"rimraf": "^2.6.2",
"emerald-svg-icons": "git+https://github.com/ETCDEVTeam/emerald-svg-icons.git#52edf26278977adfe5018b8d0c92df498378dce5",
"storybook-addon-material-ui": "0.8.2",
"@storybook/addon-knobs": "^3.4.7",
"svgo": "^1.0.5",
"underscore.string": "^3.3.4"
},
"dependencies": {
"classnames": "^2.2.5",
"copy-to-clipboard": "^3.0.8",
"material-ui": "^0.20.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-jss": "^8.1.0",
"rlp": "^2.0.0"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"<rootDir>/jest.setup.js"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js"
]
}
}