-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
47 lines (47 loc) · 1.16 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": "jssoup",
"version": "0.0.16",
"description": "JSSoup is a BeautifulSoup style HTML parser library.",
"main": "./dist/lib/jssoup.js",
"typings": "./dist/lib/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "mocha --require @babel/register",
"init": "mkdir dist && mkdir dist/lib",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init",
"build": "babel ./lib/*.js -d dist/lib; cp ./lib/index.d.ts ./dist/lib/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chishui/JSSoup.git"
},
"keywords": [
"html",
"parser",
"beautifulsoup",
"react-native",
"nodejs"
],
"author": "Liyun Xiu <chishui2@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chishui/JSSoup/issues"
},
"homepage": "https://github.com/chishui/JSSoup#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"chai": "^4.3.4",
"mocha": "^9.1.1"
},
"dependencies": {
"htmlparser": "^1.7.7",
"jssoup-selector": "^0.0.1"
}
}