-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "resonant",
"version": "0.0.0-development",
"description": "",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exbotanical/resonant.git"
},
"author": "Matthew Zito <[email protected]>",
"files": [
"dist/"
],
"exports": {
"require": "./dist/resonant.cjs.js",
"import": "./dist/resonant.es.js"
},
"main": "./dist/resonant.cjs.js",
"browser": "./dist/resonant.umd.js",
"module": "./dist/resonant.es.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">= 10"
},
"scripts": {
"build": "pnpm clean && tsc && rollup -c && rimraf .build",
"clean": "rimraf coverage dist .build tsconfig.tsbuildinfo",
"docgen": "api-extractor run --local && api-documenter markdown -i temp -o docs",
"lint": "eslint --ext .js,.ts,.json --fix .",
"prerelease": "npm pack && tar -xvzf *.tgz && rimraf package *.tgz",
"semantic-release": "semantic-release",
"test": "vitest --config __tests__/vitest.config.ts run --coverage",
"test:dev": "vitest --config __tests__/vitest.config.ts dev"
},
"lint-staged": {
"src/**/*.ts": [
"pnpm lint",
"pnpm test",
"git add ."
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"bugs": {
"url": "https://github.com/exbotanical/resonant/issues"
},
"homepage": "https://github.com/exbotanical/resonant#readme",
"devDependencies": {
"@babel/cli": "7.16.8",
"@babel/core": "7.16.5",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@magister_zito/eslint-config": "0.14.1",
"@magister_zito/prettier-config": "^0.0.4",
"@microsoft/api-documenter": "^7.9.10",
"@microsoft/api-extractor": "^7.10.4",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.1.1",
"@rollup/plugin-typescript": "8.3.0",
"@types/node": "^17.0.41",
"c8": "^7.11.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.0.1",
"eslint-config-prettier": "8.4.0",
"husky": "7.0.4",
"lint-staged": "11.1.2",
"rimraf": "^3.0.2",
"rollup": "2.58.0",
"rollup-plugin-dts": "4.0.0",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "^17.4.7",
"typescript": "4.5.2",
"vitest": "^0.14.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}