-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.78 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": "@carbonorm/carbonnode",
"version": "2.0.22",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"qs": "^6.11.1",
"react-toastify": "^9.1.3",
"handlebars": "^4.7.8"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@carbonorm/rollup-plugin-postcss": "^3.0.0",
"@drop-in-gaming/barrelsby": "^0.0.2",
"@open-wc/building-rollup": "^3.0.1",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/ms": "^0.7.31",
"@types/qs": "^6.9.8",
"autoprefixer": "^10.4.14",
"deepmerge": "^4.3.1",
"postcss": "^8.4.27",
"postcss-nested": "^6.0.1",
"postcss-simple-vars": "^7.0.1",
"rimraf": "^5.0.1",
"rollup": "^3.26.3",
"rollup-plugin-includepaths": "^0.2.4",
"typescript": "^5.1.6"
},
"scripts": {
"build": "npm run build:index && npm run build:generateRestBindings && rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build",
"build:index": "npx barrelsby -d ./src --delete --exclude '(jestHoc|\\.test|\\.d).(js|tsx?)$' --exportDefault --verbose",
"build:generateRestBindings": "cd ./scripts/ && tsc --downlevelIteration --resolveJsonModule generateRestBindings.ts && mv generateRestBindings.js generateRestBindings.cjs",
"generateRestBindings": "npm run build:generateRestBindings && node ./scripts/generateRestBindings.cjs",
"c6": "npm run generateRestBindings"
},
"bin": {
"generateRestBindings": "./scripts/generateRestBindings.cjs"
},
"files": [
"dist",
"src",
"scripts"
]
}