-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "jxt",
"description": "JSON/XML Translator. Set/retrieve data from XML just like working with a dictionary.",
"version": "4.0.2",
"bugs": "https://github.com/otalk/jxt/issues",
"contributors": [
"Lance Stout <[email protected]>"
],
"dependencies": {
"ltx": "^2.2.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"husky": "^1.1.3",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"rimraf": "^2.6.2",
"tap-spec": "^5.0.0",
"tape": "^4.8.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --stage && npm run lint && npm test"
}
},
"keywords": [
"JSON",
"JXT",
"XML",
"stanza.io",
"translation"
],
"license": "MIT",
"main": "./lib/index.js",
"prettier": {
"tabWidth": 4,
"printWidth": 100,
"semi": true,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/otalk/jxt.git"
},
"scripts": {
"compile": "rimraf lib && tsc -p .",
"lint": "tslint -p .",
"prepare": "npm run compile",
"test": "ts-node test/index.js | tap-spec",
"validate": "npm ls"
},
"typings": "types.d.ts"
}