forked from grug/data-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 905 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
{
"name": "data-mocks",
"version": "1.0.6",
"main": "dist/mocks.js",
"types": "dist/mocks.d.ts",
"repository": "git@github.com:ovotech/data-mocks.git",
"author": "Dave Cooper <dave.cooper@ovoenergy.com>",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/",
"prepublishOnly": "npm run build",
"build": "npm run clean && tsc && babel dist/mocks.js --out-file dist/mocks.js",
"test": "jest"
},
"jest": {
"testRegex": "\\.(test|spec)\\.ts?$",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"^.+\\.ts?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"dependencies": {
"@types/fetch-mock": "^5.12.0",
"@types/jest": "^21.1.2",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"fetch-mock": "^5.13.1",
"jest": "^21.2.1",
"ts-jest": "^21.1.2",
"typescript": "^2.5.3"
}
}