-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "pxr",
"version": "7.0.3",
"description": "HTML transformation library built on top of HTMLParser2, used by Compoxure.",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "jshint .",
"test": "istanbul cover _mocha -- --exit -R spec tests/*.js && istanbul check-coverage",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "[email protected]:tes/parxer.git"
},
"keywords": [
"composition",
"proxy"
],
"author": "Clifton Cunningham",
"license": "MIT",
"bugs": {
"url": "https://github.com/cliftonc/pxr/issues"
},
"homepage": "https://github.com/cliftonc/pxr",
"dependencies": {
"async": "^3.2.5",
"handlebars": "^4.1.2",
"htmlparser2": "^9.1.0",
"kbn-handlebars": "^1.0.0",
"lodash": "~4.17.11"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.12",
"expect.js": "~0.3.1",
"istanbul": "^0.4.5",
"jshint": "^2.5.6",
"mocha": "^10.4.0"
},
"semistandard": {
"ignore": [
"**/hogan.js/**",
"**/tests/**"
]
}
}