forked from peternewnham/react-html-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 4.52 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"_args": [
[
{
"raw": "react-html-parser",
"scope": null,
"escapedName": "react-html-parser",
"name": "react-html-parser",
"rawSpec": "",
"spec": "latest",
"type": "tag"
},
"/Users/jwelfare/Projects/ncsc-portal-admin"
]
],
"_from": "react-html-parser@latest",
"_id": "[email protected]",
"_inCache": true,
"_location": "/react-html-parser",
"_nodeVersion": "5.7.1",
"_npmOperationalInternal": {
"host": "packages-16-east.internal.npmjs.com",
"tmp": "tmp/react-html-parser-1.0.3.tgz_1463358120256_0.04078209772706032"
},
"_npmUser": {
"name": "wrakky",
"email": "[email protected]"
},
"_npmVersion": "3.6.0",
"_phantomChildren": {},
"_requested": {
"raw": "react-html-parser",
"scope": null,
"escapedName": "react-html-parser",
"name": "react-html-parser",
"rawSpec": "",
"spec": "latest",
"type": "tag"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/react-html-parser/-/react-html-parser-1.0.3.tgz",
"_shasum": "28358f0cc11eee3bf490f8ab6c9c31bd2c806790",
"_shrinkwrap": null,
"_spec": "react-html-parser",
"_where": "/Users/jwelfare/Projects/ncsc-portal-admin",
"author": {
"name": "Peter Newnham"
},
"bugs": {
"url": "https://github.com/wrakky/react-html-parser/issues"
},
"dependencies": {
"htmlparser2": "^3.9.0"
},
"description": "Parse HTML into React components",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.10.1",
"eslint-plugin-react": "^5.1.1",
"inject-loader": "^2.0.1",
"isparta-loader": "^2.0.0",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-phantomjs-shim": "^1.4.0",
"karma-spec-reporter": "^0.0.26",
"karma-webpack": "^1.7.0",
"phantomjs-prebuilt": "^2.1.7",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"rimraf": "^2.5.2",
"webpack": "^1.13.0"
},
"directories": {},
"dist": {
"shasum": "28358f0cc11eee3bf490f8ab6c9c31bd2c806790",
"tarball": "https://registry.npmjs.org/react-html-parser/-/react-html-parser-1.0.3.tgz"
},
"gitHead": "404ed57361df33dd1990f4b2cfa336e4dfbd96fb",
"homepage": "https://github.com/wrakky/react-html-parser#readme",
"jsnext:main": "src/index.js",
"keywords": [
"react",
"html",
"htmlparser",
"htmlparser2",
"inner html",
"dangerouslySetInnerHTML"
],
"license": "MIT",
"main": "lib/index.js",
"maintainers": [
{
"name": "wrakky",
"email": "[email protected]"
}
],
"name": "react-html-parser",
"optionalDependencies": {},
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0 || ^15.0.0"
},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/wrakky/react-html-parser.git"
},
"scripts": {
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:lib": "rimraf lib && babel ./src -d lib",
"build:umd": "webpack src/index.js dist/react-html-parser.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js -p dist/react-html-parser.min.js --config webpack.config.production.js",
"check": "npm run lint && npm run test",
"clean": "rimraf coverage dist lib",
"demo:build": "cd demo && npm run build",
"demo:clean": "rimraf demo/dist",
"demo:publish": "npm run demo:clean && npm run demo:build && npm run demo:push",
"demo:push": "cd demo/dist && git init && git commit --allow-empty -m 'update demo' && git checkout -b gh-pages && git add . && git commit -am 'update demo' && git push [email protected]:wrakky/react-html-parser gh-pages --force",
"lint": "eslint src test demo/src",
"postrelease": "git push --follow-tags && npm publish",
"prerelease": "npm run clean && npm run check",
"release": "npm run build",
"release:major": "npm version major && npm run release",
"release:minor": "npm version minor && npm run release",
"release:patch": "npm version patch && npm run release",
"test": "karma start --single-run",
"test:watch": "karma start"
},
"version": "1.0.3"
}