-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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
{
"name": "@aserto/aserto-spa-js",
"version": "0.4.1",
"description": "Aserto single-page application JavaScript SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rimraf ./dist && yarn run build:types && yarn run build:js",
"build:js": "rollup -c",
"build:types": "tsc -p tsconfig.build.json",
"format": "prettier --write src",
"prepublishOnly": "cross-env NODE_ENV=production yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aserto-dev/aserto-spa-js.git"
},
"files": [
"dist/*"
],
"keywords": [
"aserto",
"authorization"
],
"author": "Aserto",
"license": "Apache-2.0",
"devDependencies": {
"@aserto/ts-linting-configs": "^3.0.1",
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"cross-env": "7.0.3",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.2",
"typescript": "^4.9.0"
},
"prettier": "@aserto/ts-linting-configs/prettier.config",
"packageManager": "yarn@1.22.19+sha512.ff4579ab459bb25aa7c0ff75b62acebe576f6084b36aa842971cf250a5d8c6cd3bc9420b22ce63c7f93a0857bc6ef29291db39c3e7a23aab5adfd5a4dd6c5d71"
}