-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.24 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": "htmlstr-parser",
"version": "2.0.1",
"description": "Simple HTML to JSON parser use Regexp and String.indexOf",
"main": "dist/htmlParser.js",
"scripts": {
"build": "BABEL_ENV=build rollup -c",
"build:es6": "rollup src/index.js -f cjs -o dist/htmlParser.es6.js",
"watch": "BABEL_ENV=build rollup -c -w",
"pro": "BABEL_ENV=build NODE_ENV=production rollup -c",
"update": "npm run build && npm run build:es6 && npm run pro",
"test": "ava --watch"
},
"ava": {
"require": [
"./ava.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/henryluki/html-parser.git"
},
"keywords": [
"html-parser",
"parser",
"json",
"html-to-json",
"ast",
"Regex"
],
"author": "henryluki",
"license": "MIT",
"bugs": {
"url": "https://github.com/henryluki/html-parser/issues"
},
"homepage": "https://github.com/henryluki/html-parser#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.24.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
}
}