-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.56 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
{
"name": "healthelastic-react",
"version": "0.11.1",
"description": "healthelastic react UI",
"main": "./lib/index.js",
"publishConfig": {
"registry": "http://repo.release.cerner.corp/npm-internal"
},
"scripts": {
"build:lib": "babel src --out-dir lib",
"build": "npm run clean && npm run lint-js && npm run build:lib && npm run build-webpack",
"build-doc": "jsdoc --package package.json -d doc './src/**/*.js'",
"build-webpack": "webpack -p --progress --colors --display-error-details",
"clean": "rimraf dist doc",
"dev": "webpack-dev-server --host=0.0.0.0 --inline --config webpack.config.dev.js",
"dev-https": "webpack-dev-server --inline --config webpack.config.dev.js --https",
"lint-js": "eslint './src/**/*.{js, jsx}' --fix",
"mh-release": "npm run rm-npmrc && npm run rm-public-deps",
"prepublish": "npm run build",
"rm-npmrc": "rm -f .npmrc",
"test": "jest"
},
"files": [
"dist",
"lib",
"src"
],
"dependencies": {
"prop-types": "^15.5.8",
"react": "^15.5.0",
"react-dom": "^15.5.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"author": "Cerner Corporation",
"license": "SEE LICENSE in LICENSE"
}