-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "microspot",
"version": "1.2.1",
"description": "",
"main": "es/index.es.js",
"types": "types/index.d.ts",
"author": "jingyu",
"license": "MIT",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"ci": "tsc --noEmit",
"test": "jest",
"prepare": "husky install"
},
"files": [
"es",
"types"
],
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/Ruimve/microspot.git"
},
"bugs": {
"url": "https://github.com/Ruimve/microspot/issues"
},
"homepage": "https://github.com/Ruimve/microspot#readme",
"dependencies": {
"typescript": "^4.9.4"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.2.6",
"babel-jest": "^29.3.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"rollup": "^3.10.1",
"tslib": "^2.4.1"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"**/*.spec.{js,jsx,ts,tsx}"
],
"collectCoverage": true,
"coverageReporters": [
"text",
"cobertura"
]
}
}