-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "sipster.ts",
"version": "0.0.1",
"description": "A wrapper class of mscdex/sipster",
"author": "KINOSHITA minoru <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/minoruta/sipster.ts",
"repository": {
"type": "git",
"url": "git://github.com/minoruta/sipster.ts.git"
},
"main": "./dist/src/Sipster.js",
"types": "./dist/src/Sipster.d.ts",
"scripts": {
"build": "npm run build-ts && npm run tslint",
"test": "jest --forceExit",
"build-ts": "tsc",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"docs": "node_modules/.bin/typedoc src && ./.remove_local.sh"
},
"engines": {
"node": ">= 8"
},
"dependencies": {
"sipster": "github:minoruta/sipster#for-sipster-ts"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^8.10.11",
"jest": "^22.4.2",
"ts-jest": "^22.4.4",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typedoc-plugin-sourcefile-url": "^1.0.3",
"typescript": "^2.8.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.ts"
],
"testEnvironment": "node"
}
}