forked from DeloitteAU/react-habitat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
{
"name": "react-habitat",
"version": "0.4.2",
"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-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"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.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jasmine": "^1.8.1",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"jasmine-core": "^2.4.1",
"karma": "^1.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"karma-webpack": "^1.8.0",
"phantomjs-polyfill-object-assign": "0.0.2",
"webpack": "^1.13.0"
},
"dependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"files": [
"LICENCE.md",
"CHANGELOG.md",
"index.d.ts",
"readme.md",
"readme-in-es5.md",
"lib/",
"dist/"
],
"scripts": {
"test": "karma start --single-run --browsers PhantomJS",
"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",
"prepublish": "npm run build",
"prebuild": "npm run test"
}
}