-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "@anthane/core-services",
"version": "1.0.6",
"description": "Straightforward interface to interact with Anthane Cloud ecosystem.",
"publishConfig": {
"access": "public",
"@anthane:registry": "https://registry.npmjs.org/"
},
"scripts": {
"prebuild": "./node_modules/rimraf/bin.js dist",
"build:types": "tsc -b",
"build:bundle": "rollup -c",
"build": "npm run build:types && npm run build:bundle",
"predev": "npm run build",
"dev": "rollup -c --watch",
"test": "jest",
"prepublishOnly": "npm run build"
},
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.mjs",
"types": "dist/types/src/index.d.ts",
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": "./dist/esm/src/index.mjs",
"require": "./dist/cjs/src/index.js"
}
},
"files": [
"dist"
],
"author": "BlazeIsClone",
"license": "GPL-2.0",
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"axios": "^0.27.2",
"jest": "^29.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-includepaths": "^0.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"peerDependencies": {
"axios": "^0.27.2"
}
}