-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 966 Bytes
/
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
{
"name": "omnimock",
"version": "1.0.0-rc.1",
"description": "Delightful mocks for JavaScript and TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/hmil/omnimock.git",
"author": "Hadrien Milano <hmil.fr>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc -p .",
"lint": "tslint -p .",
"test": "jest",
"test:debug": "node --inspect node_modules/.bin/jest --watch --runInBand"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.15",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"tslib": "^1.10.0",
"tslint": "^5.17.0",
"tslint-override": "^0.5.1",
"typescript": "3.8.3",
"typestrict": "^1.0.2"
},
"peerDependencies": {
"typescript": ">=3.1.0"
}
}