-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.57 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
{
"name": "@riotjs/parser",
"version": "9.0.1",
"description": "The parser for Riot tags",
"type": "module",
"main": "./index.cjs",
"module": "./index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
}
},
"license": "MIT",
"scripts": {
"test": "c8 mocha ./test/index",
"test-debug": "mocha --inspect-brk ./test",
"cov": "c8 report --reporter=lcov",
"cov-html": "c8 report --reporter=html",
"pretest": "npm run build",
"lint": "eslint src test && npx prettier --check ./",
"build": "rollup -c",
"samples": "node ./test/samples.js",
"prepublishOnly": "npm run build",
"postpublish": "git push && git push --tags"
},
"files": [
"index.js",
"index.cjs",
"src"
],
"keywords": [
"html",
"html5",
"tag",
"parser",
"javascript"
],
"author": {
"name": "aMarCruz",
"email": "[email protected]",
"url": "https://github.com/aMarCruz"
},
"repository": {
"type": "git",
"url": "https://github.com/riot/parser"
},
"homepage": "https://github.com/riot/parser",
"bugs": "https://github.com/riot/parser/issues",
"readme": "https://github.com/riot/parser/blob/master/README.md",
"devDependencies": {
"@riotjs/prettier-config": "^1.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"c8": "^10.1.2",
"chai": "^5.1.2",
"eslint": "^8.39.0",
"eslint-config-riot": "^4.1.2",
"mocha": "^10.8.2",
"prettier": "^3.4.1",
"rollup": "^4.27.4"
},
"dependencies": {
"curri": "^2.0.3",
"dom-nodes": "^1.1.3"
}
}