-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1 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": "crownstone-cloud",
"version": "0.29.1",
"scripts": {
"start": "tsc -watch",
"build": "rimraf ./dist && tsc",
"test": "jest --useStderr --clearMocks",
"cleanTest": "jest --useStderr --no-cache --clearMocks"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"cross-fetch": "^3.0.4",
"crownstone-core": "^0.8.3",
"crownstone-logger": "^0.1.4",
"got": "11.8.5",
"node-fetch": "^2.6.0",
"sha-1": "~0.1.1"
},
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/node": "^13.5.3",
"rimraf": "^3.0.2",
"jest": "^25.1.0",
"typescript": "3.7.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./tests/jest_preprocessor.js"
},
"testMatch": [
"**/tests/*.test.+(ts|tsx|js)"
],
"setupFiles": [
"./tests/jest_setup.js"
],
"collectCoverage": true,
"collectCoverageFrom": []
},
"license": "MIT"
}