-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.08 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
47
48
49
{
"name": "crownstone-core",
"version": "0.25.0",
"scripts": {
"start": "tsc -watch",
"test": "jest --useStderr --clearMocks",
"build": "rimraf ./dist && tsc",
"prerelease": "node coreParser.js; rimraf ./dist && tsc",
"cleanTest": "jest --useStderr --no-cache --clearMocks"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"aes-js": "^3.1.1",
"crownstone-logger": "^0.1.4"
},
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/node": "^13.5.3",
"rimraf": "^3.0.2",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-date-mock": "^1.0.8",
"ts-jest": "^26.5.1",
"typescript": "^4.2.3"
},
"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": []
},
"engines": {
"node": ">=10.4.0"
},
"license": "MIT"
}