forked from mint-lang/mint-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
{
"private": true,
"scripts": {
"build": "rollup -c",
"test": "TZ=UTC jest",
"lint": "prettier --list-different source/** tests/** rollup.config.js",
"format": "prettier --write source/** tests/** rollup.config.js"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"babel-jest": "^26.3.0",
"date-fns": "^2.16.1",
"event-propagation-path": "^1.0.5",
"indent-string": "^4.0.0",
"jest": "^26.4.2",
"preact": "10.4.4",
"prettier": "^2.1.2",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.27.1",
"rollup-plugin-esbuild": "^2.5.0",
"rollup-plugin-terser": "^7.0.2",
"route-parser": "^0.0.5"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
"text"
],
"testMatch": [
"**/tests/*.js"
]
}
}