-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "@coreh/zoop",
"version": "0.3.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/coreh/zoop.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@types/qs": "^6.5.1",
"fetch-ponyfill": "^6.0.2",
"isomorphic-base64": "^1.0.2",
"qs": "^6.5.2",
"tslib": "^1.9.2"
},
"devDependencies": {
"@types/jest": "^23.0.0",
"jest": "^23.1.0",
"ts-jest": "^22.4.6",
"typescript": "^2.9.1",
"tslint": "^5.10.0"
},
"scripts": {
"prepare": "tsc --project . --declaration --outDir dist/",
"clean": "rm -f *.js *.d.ts",
"lint": "tslint -c tslint.json '**/*.ts' --exclude '**/node_modules/**'",
"test": "jest",
"coverage": "jest --coverage"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}