-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 922 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
37
38
39
40
41
42
43
{
"name": "provok",
"version": "0.0.2",
"description": "An event driven guideline",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest tests/",
"example:import": "ts-node examples/data-import/main.ts"
},
"author": "Hugues Charleux",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.23",
"eslint": "^5.16.0",
"jest": "^24.5.0",
"prettier": "^1.17.0",
"prettier-eslint": "^8.8.2",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.2"
},
"dependencies": {
"uuid": "^3.3.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "tests",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}