-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
88 lines (88 loc) · 2.56 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
80
81
82
83
84
85
86
87
88
{
"name": "react-habitat",
"version": "1.0.1",
"description": "A React DOM Bootstrapper designed to harmonise a hybrid application",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/DeloitteDigitalAPAC/react-habitat.git"
},
"keywords": [
"react",
"redux",
"bootstrapper",
"cms",
"hybrid",
"mix",
"mixed",
"standalone",
"sitecore",
"wordpress",
"drupal",
"umbraco",
"joomla",
"magento"
],
"author": "Deloitte Digital Australia (http://deloittedigital.com.au)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/DeloitteDigitalAPAC/react-habitat/issues"
},
"homepage": "https://github.com/DeloitteDigitalAPAC/react-habitat#readme",
"typescript": {
"definition": "index.d.ts"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-deloitte-react": "^2.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jasmine": "^1.8.1",
"eslint-plugin-jsx-a11y": "^5.0.0",
"eslint-plugin-react": "^7.1.0",
"jasmine-core": "^2.4.1",
"karma": "^1.7.0",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-polyfill": "^1.0.0",
"karma-webpack": "^1.8.0",
"prop-types": "^15.5.10",
"webpack": "^1.13.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"peerDependencies": {
"react": ">=15.0.0 <17.0.0",
"react-dom": ">=15.0.0 <17.0.0"
},
"files": [
"LICENCE.md",
"CHANGELOG.md",
"index.d.ts",
"readme.md",
"readme-in-es5.md",
"lib/",
"dist/"
],
"scripts": {
"test": "npm run lint && karma start --single-run",
"test:w": "NODE_ENV=development karma start --browsers Chrome",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/react-habitat.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-habitat.min.js",
"lint": "eslint src",
"prepublishOnly": "npm run test && npm run build"
}
}