-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "parsoid",
"description": "A bidirectional runtime wikitext parser. Converts back and forth between wikitext and HTML/XML DOM with RDFa.",
"version": "0.11.0",
"license": "GPL-2.0+",
"dependencies": {
"babybird": "0.0.1",
"core-js": "^2.5.6",
"domino": "^2.1.0",
"entities": "^1.1.1",
"js-yaml": "^3.13.1",
"pn": "^1.1.0",
"prfun": "^2.1.5",
"request": "^2.87.0",
"semver": "^6.1.0",
"simplediff": "^0.1.1",
"wikimedia-langconv": "^0.1.0",
"wikipeg": "^4.0.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"api-testing": "1.6.0",
"chai": "^4.1.2",
"colors": "^1.2.4",
"eslint": "8.57.0",
"eslint-config-wikimedia": "0.28.2",
"mocha": "git+https://github.com/arlolra/mocha.git#fix-ansi-regex",
"nock": "^9.2.5"
},
"scripts": {
"eslint": "eslint --cache --ext .js,.json .",
"eslint-fix": "eslint --cache --ext .js,.json --fix .",
"regen-php-tokenizer": "node bin/inspectTokenizer.js --source --php -o src/Wt2Html/Grammar.php --header-comment-file ./bin/grammarheader-npm.txt",
"regen-php-tokenizer-trace": "node bin/inspectTokenizer.js --source --php -o src/Wt2Html/Grammar.php --trace",
"regen-php-tests-tokenizer": "node node_modules/wikipeg/bin/wikipeg --php --class-name Grammar src/ParserTests/Grammar.pegphp src/ParserTests/Grammar.php",
"api-testing": "mocha --timeout 0 tests/api-testing",
"test": "npm run eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/wikimedia/parsoid.git"
},
"deploy": {
"target": "debian",
"node": "6.9.1",
"dependencies": {
"_all": []
}
}
}