-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "rexml",
"version": "2.2.2",
"description": "Simple XML parsing with a regular expression.",
"main": "build/index.js",
"module": "src/index.js",
"scripts": {
"t": "zoroaster -a",
"test": "yarn t test/spec",
"test-build": "ALAMODE_ENV=test-build yarn test",
"lint": "eslint .",
"doc": "NODE_DEBUG=doc doc -o README.md -n _rexml",
"e": "alanode",
"externs": "typal types/externs.js",
"example/": "yarn e example/example.js",
"build": "yarn-s b doc",
"build-re": "babel src/lib/res0.js -d src/lib/res0.js",
"b": "alamode src -o build -s"
},
"files": [
"build",
"src",
"types/externs.js"
],
"externs": "types/externs.js",
"repository": {
"type": "git",
"url": "git://github.com/artdecocode/rexml.git"
},
"keywords": [
"rexml",
"xml",
"parse",
"extract",
"tags",
"attributes"
],
"author": "Anton <anton@adc.sh>",
"license": "MIT",
"bugs": {
"url": "https://github.com/artdecocode/rexml/issues"
},
"homepage": "https://github.com/artdecocode/rexml#readme",
"devDependencies": {
"@babel/plugin-proposal-unicode-property-regex": "7.4.4",
"alamode": "^2.4.0",
"documentary": "^1.31.0",
"eslint-config-artdeco": "1.0.1",
"yarn-s": "1.1.0",
"zoroaster": "^4.1.1-alpha"
},
"dependencies": {
"mismatch": "^1.2.0"
}
}