-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 967 Bytes
/
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
{
"name": "@imglab/core",
"source": "src/index.js",
"version": "0.3.0",
"description": "Official imglab Javascript library",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imglab-io/imglab-js.git"
},
"author": "imglab <support@imglab.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/imglab-io/imglab-js/issues"
},
"homepage": "https://github.com/imglab-io/imglab-js#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@rollup/plugin-babel": "^5.3.0",
"babel-jest": "^27.4.0",
"jest": "^27.3.1",
"rollup": "^2.60.1",
"rollup-plugin-polyfill-node": "^0.7.0",
"rollup-plugin-terser": "^7.0.2"
}
}