-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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": "dolmx",
"version": "1.1.2",
"description": "mini xml parser",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/echosoar/dolmx.git"
},
"keywords": [
"xml",
"parser"
],
"author": "echosoar",
"license": "MIT",
"bugs": {
"url": "https://github.com/echosoar/dolmx/issues"
},
"homepage": "https://github.com/echosoar/dolmx#readme",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"build": "tslint -c tslint.json 'src/**/*.ts' && tsc --build",
"test": "jest",
"coverage": "jest --coverage",
"minify": "uglifyjs --compress --mangle --output index.min.js -- ./dist/index.js"
},
"devDependencies": {
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.0",
"jest": "^26.0.0",
"ts-jest": "^26.0.0",
"tslint": "^5.20.1",
"typescript": "^5.6.2",
"uglify-js": "^3.6.0"
},
"jest": {
"preset": "ts-jest"
}
}