-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.42 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
{
"name": "your-project-name",
"version": "0.0.0",
"description": "",
"keywords": [],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/your-project"
},
"scripts": {
"lint": "eslint src/**/*",
"pretest": "npm run lint",
"test": "npm-run-all test:mocha",
"test:mocha": "mocha",
"test-with-coverage": "c8 npm run test",
"prebuild": "npm-run-all test clean",
"build": "npm-run-all build:*",
"build:js": "rollup -c scripts/rollup.config.mjs",
"postbuild": "npm-run-all postbuild:*",
"postbuild:doc": "rimraf docs && jsdoc --configure jsdoc.json --verbose",
"clean": "rimraf dist",
"postclean": "mkdirp dist",
"prepublishOnly": "",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run changelog && git push",
"changelog": "rimraf CHANGELOG.md && auto-changelog --template keepachangelog && git add . && git commit . -m changelog && git push"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"auto-changelog": "^2.4.0",
"c8": "^8.0.0",
"chai": "^4.3.7",
"clean-jsdoc-theme": "^4.2.9",
"core-js": "^3.31.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jsdoc": "^4.0.2",
"mkdirp": "^3.0.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"rollup": "^3.25.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-license": "^3.0.1"
},
"dependencies": {
"check-types": "^11.2.2"
}
}