-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 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
57
58
{
"name": "doc-prsr",
"version": "2.2.5",
"description": "",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"start": "tsc --watch",
"build": "tsc",
"release:changelog": "conventional-changelog -i CHANGELOG.md -s",
"release": "npm run build && npm test && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akveo/doc-prsr.git"
},
"author": "Akveo",
"license": "MIT",
"bugs": {
"url": "https://github.com/akveo/doc-prsr/issues"
},
"homepage": "https://github.com/akveo/doc-prsr#readme",
"dependencies": {
"commander": "^2.9.0",
"path": "^0.12.7",
"typescript": "^2.7.0"
},
"devDependencies": {
"@types/jest": "^19.2.4",
"@types/node": "^7.0.27",
"@types/tape": "^4.2.30",
"conventional-changelog-cli": "^1.3.22",
"fs": "0.0.1-security",
"jest": "^22.0.6",
"npm-run-all": "^4.0.2",
"tape": "^4.6.3",
"ts-jest": "^20.0.5",
"ts-node": "^3.0.4",
"typings": "^2.1.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"testURL": "http://localhost"
},
"bin": {
"prsr": "bin/prsr"
}
}