-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "react-active-html",
"version": "1.2.2",
"description": "Convert HTML string to React Components",
"main": "lib/index.js",
"scripts": {
"build": "babel src/ --out-dir lib/",
"prepublish": "npm run build",
"test:unit": "NODE_PATH=src NODE_ENV=testing mocha --require ./test/utils/babel.js -c 'test/unit/**/*.test.js'",
"test": "npm run test:unit",
"example": "webpack-dev-server --config ./examples/webpack.config.js --mode development"
},
"repository": {
"type": "git",
"url": "https://github.com/shtrihstr/react-active-html.git"
},
"keywords": [
"react"
],
"author": {
"name": "Oleksandr Strikha",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"to-camel-case": "^1.0.0"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"webpack": "^4.16.4",
"webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.1.5",
"xmldom": "^0.1.27"
}
}