-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
41 lines (41 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
{
"name": "xml-decorators",
"version": "1.0.6",
"description": "Decorators for xml serialization",
"main": "index.js",
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "mocha 'test/specs/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinBuschmann/xml-typescript.git"
},
"author": "Robin Buschmann",
"license": "ISC",
"bugs": {
"url": "https://github.com/RobinBuschmann/xml-typescript/issues"
},
"homepage": "https://github.com/RobinBuschmann/xml-typescript#readme",
"peerDependencies": {
"reflect-metadata": "^0.1.8"
},
"dependencies": {
"@types/bluebird": "3.5.22",
"@types/lodash": "~4.14.42",
"bluebird": "3.5.1",
"es6-shim": "0.35.3",
"js2xmlparser": "3.0.0",
"lodash": "4.17.10"
},
"devDependencies": {
"@types/chai": "4.1.4",
"@types/mocha": "5.2.5",
"chai": "4.1.2",
"mocha": "5.2.0",
"reflect-metadata": "^0.1.8",
"tslint": "5.11.0",
"typescript": "2.9.2"
}
}