forked from marko-js/htmljs-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "htmljs-parser",
"description": "An HTML parser recognizes content and string placeholders and allows JavaScript expressions as attribute values",
"keywords": [
"HTML",
"parser",
"JavaScript",
"expressions",
"browser",
"server",
"nodejs",
"template",
"compiler"
],
"main": "index.js",
"scripts": {
"test": "npm run mocha && npm run jshint",
"mocha": "node_modules/.bin/mocha --ui bdd --reporter spec ./test",
"jshint": "node_modules/.bin/jshint *.js"
},
"repository": {
"type": "git",
"url": "https://github.com/philidem/htmljs-parser.git"
},
"author": "Phillip Gates-Idem <[email protected]>",
"maintainers": "Phillip Gates-Idem <[email protected]>",
"dependencies": {
"char-props": "^0.1.5",
"complain": "^1.0.0"
},
"devDependencies": {
"@babel/runtime": "^7.12.5",
"chai": "^4.0.0",
"colors": "^1.1.2",
"jshint": "^2.8.0",
"mocha": "^4.0.0",
"mocha-autotest": "^1.0.3"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "2.11.1"
}