-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 1.67 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
57
58
59
60
61
62
63
64
{
"name": "simple-odf",
"version": "0.6.0",
"description": "Open Document Format made easy using pure JavaScript and Node.js",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"preversion": "npm test",
"postversion": "git push && git push --tags",
"prepublishOnly": "tsc",
"pretest": "npm run lint",
"test": "jest",
"watch-test": "jest --watch",
"coverage": "jest --coverage",
"jest": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts', 'test/**/*.ts'",
"tsc": "tsc",
"docs": "rm -r ./lib && tsc && jsdoc2md --name-format --param-list-format list --separators --partial ./jsdoc2md/body.hbs ./jsdoc2md/params-list.hbs ./jsdoc2md/returns.hbs ./jsdoc2md/scope.hbs --files ./lib/**/*.js ./lib/*.js > ./docs/API.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connium/simple-odf.git"
},
"keywords": [
"open",
"document",
"format",
"odf",
"odt",
"office"
],
"author": "Christoph Nölke",
"license": "MIT",
"bugs": {
"url": "https://github.com/connium/simple-odf/issues"
},
"homepage": "https://github.com/connium/simple-odf#readme",
"engines": {
"node": "^8.9.4"
},
"dependencies": {
"xmldom": "^0.1.27"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^8.10.35",
"@types/xmldom": "^0.1.29",
"jest": "^22.4.4",
"jsdoc-to-markdown": "^4.0.1",
"ts-jest": "^22.4.6",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "test/.*.*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}