-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 999 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": "jestTypescriptEs6",
"version": "1.0.0",
"description": "jest + typescript + es6 modules",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"build-dev": "rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AntonPilyak/jest_typescript_es6.git"
},
"author": "Anton Pilyak <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/AntonPilyak/jest_typescript_es6/issues"
},
"homepage": "https://github.com/AntonPilyak/jest_typescript_es6#readme",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@types/jest": "^24.0.6",
"@types/node": "^11.9.4",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"rollup": "^1.2.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.19.2",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"typescript": "^3.3.3"
}
}