-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "aleli",
"version": "1.0.0",
"description": "Virtual dom prototype implemeted with TDD and Typescript",
"source": "src/index.ts",
"main": "./dist/foo.js",
"exports": "./dist/aleli.modern.js",
"module": "./dist/aleli.module.js",
"unpkg": "./dist/aleli.umd.js",
"repository": "git@github.com:Remeic/aleli.git",
"author": "Giulio Fagioli <fagioli.giulio@gmail.com>",
"license": "MIT",
"private": true,
"devDependencies": {
"@stryker-mutator/core": "^5.0.1",
"@stryker-mutator/jest-runner": "^5.0.1",
"@stryker-mutator/typescript-checker": "^5.0.1",
"@testing-library/dom": "^7.31.0",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.22",
"babel-jest": "^26.6.3",
"codecov": "^3.8.1",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"ts-jest": "^26.5.5",
"ts-mockito": "^2.6.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"unit": "jest ./test/unit",
"integration": "yarn unit && jest -c jest.config.integration.js",
"e2e": "jest -c jest.config.e2e.js",
"mutation": "npx stryker run",
"testPR": "yarn integration && yarn mutation"
}
}