2016-03-25 07:04:46 -04:00
|
|
|
{
|
2021-08-16 05:54:39 -04:00
|
|
|
"name": "@overleaf/access-token-encryptor",
|
2023-02-14 09:17:55 -05:00
|
|
|
"version": "3.0.0",
|
2016-03-25 07:04:46 -04:00
|
|
|
"description": "",
|
|
|
|
"main": "index.js",
|
2024-01-16 14:24:03 -05:00
|
|
|
"types": "./types/index.d.ts",
|
2016-03-25 07:04:46 -04:00
|
|
|
"scripts": {
|
2024-01-16 14:24:03 -05:00
|
|
|
"test": "npm run lint && npm run format && npm run types:check && npm run test:unit",
|
2024-01-11 08:26:29 -05:00
|
|
|
"lint": "eslint --ext .js --ext .cjs --max-warnings 0 --format unix .",
|
|
|
|
"lint:fix": "eslint --fix --ext .js --ext .cjs .",
|
|
|
|
"format": "prettier --list-different $PWD/'**/*.{js,cjs}'",
|
|
|
|
"format:fix": "prettier --write $PWD/'**/*.{js,cjs}'",
|
|
|
|
"test:ci": "npm run test:unit",
|
|
|
|
"test:unit": "mocha --exit test/**/*.{js,cjs}",
|
2024-01-23 14:53:37 -05:00
|
|
|
"types:build": "[ -d types ] || tsc --noEmit false --emitDeclarationOnly",
|
2024-01-16 14:24:03 -05:00
|
|
|
"types:check": "tsc --noEmit",
|
|
|
|
"types:rebuild": "rm -rf types && npm run types:build"
|
2016-03-25 07:04:46 -04:00
|
|
|
},
|
|
|
|
"author": "",
|
2021-08-16 05:54:39 -04:00
|
|
|
"license": "AGPL-3.0-only",
|
2023-01-31 06:03:50 -05:00
|
|
|
"dependencies": {
|
|
|
|
"lodash": "^4.17.21"
|
|
|
|
},
|
2016-03-25 07:04:46 -04:00
|
|
|
"devDependencies": {
|
2022-02-07 06:46:51 -05:00
|
|
|
"chai": "^4.3.6",
|
2023-01-16 10:55:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
2024-01-11 08:26:29 -05:00
|
|
|
"sandboxed-module": "^2.0.4",
|
|
|
|
"typescript": "^5.0.4"
|
2019-10-08 09:01:55 -04:00
|
|
|
}
|
2016-03-25 07:04:46 -04:00
|
|
|
}
|