-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "@ditus/upc-util",
"version": "1.0.3",
"description": "UPC utility library.",
"private": false,
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"test": "jest --coverage",
"changelog": "conventional-changelog -o CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ditus-software/upc-util.git"
},
"author": "DITUS INC. <ditus@rocketmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ditus-software/upc-util/issues"
},
"homepage": "https://github.com/ditus-software/upc-util#readme",
"peerDependencies": {
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"babel-loader": "^9.1.2",
"rollup": "^2.68.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.2",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"coveralls": "^3.1.1",
"jest": "^29.5.0"
},
"files": [
"dist"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}