-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "xml2js-clean",
"version": "0.0.3",
"repository": {
"type": "git",
"url": "https://github.com/mstn/xml2js-clean"
},
"description": "clean xml2js output based on some user defined heuristics",
"main": "index.js",
"scripts": {
"test": "jest",
"predeploy": "npm run lint && npm run test",
"deploy": "./scripts/deploy.sh",
"compile": "tsc",
"lint": "tslint 'src/*.ts'"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/jest": "^22.1.1",
"@types/lodash": "^4.14.104",
"@types/node": "^9.4.3",
"@types/xml2js": "^0.4.2",
"jest": "^22.2.1",
"ts-jest": "^22.0.3",
"tslint": "^5.9.1",
"typescript": "^2.6.2",
"xml2js": "^0.4.19"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"lodash": "^4.17.5"
}
}