-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.26 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
{
"name": "pxon",
"version": "0.1.0",
"homepage": "https://github.com/matthewhudson/pxon",
"description": "",
"main": "dist/cjs/bundle.js",
"module": "dist/esm/bundle.js",
"browser": "dist/browser/bundle.js",
"files": [
"es",
"lib",
"umd"
],
"author": "Matthew Hudson <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.21.3",
"@babel/preset-env": "7.20.2",
"babel-jest": "29.5.0",
"codecov": "3.8.3",
"cz-conventional-changelog": "3.3.0",
"jest": "29.5.0",
"jsdoc": "3.6.3",
"jsdoc-template": "1.2.0",
"rollup": "2.79.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "7.0.2",
"standard": "17.0.0"
},
"scripts": {
"docs": "jsdoc -c .jsdoc.json --verbose",
"build": "rollup -c",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "jest",
"test:coverage": "jest --coverage && codecov"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"text",
"clover"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}