-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.65 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.65 KB
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": "@algolia/json-stream-analyzer",
"version": "0.2.17",
"main": "index.js",
"repository": "git@github.com:algolia/json-stream-analyzer.git",
"author": "Jonathan Montane <jonathan.montane@algolia.com>",
"devDependencies": {
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"babel-eslint": "10.1.0",
"eslint": "8.31.0",
"eslint-config-algolia": "20.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-jsdoc": "39.3.3",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.5.1",
"prettier": "2.7.1",
"renovate-config-algolia": "2.1.10",
"ts-jest": "27.1.5",
"typescript": "4.7.2"
},
"scripts": {
"test": "jest",
"build": "yarn clean && tsc",
"lint": "eslint --ext .ts src/",
"lint:fix": "yarn lint -- --fix",
"clean": "rm -rf dist/",
"pre-release": "yarn test && yarn build && cp package.json dist/ && npm publish dist/ --dry-run --access public ",
"re-link": "cd dist/ && (yarn unlink || echo 'no package to unlink') && yarn link && cd .. && yarn link @algolia/json-stream-analyzer",
"pre-release-test": "yarn pre-release && yarn re-link && jest --config jest.pre-release.config.js",
"release": "(npm whoami || (echo 'this command must be run from npm and not yarn' && exit 1)) && yarn pre-release-test && yarn version && cp package.json dist/ && cp README.md dist/ && cp LICENSE dist/ && npm publish dist/ --access public && git push origin master"
},
"engines": {
"node": ">=14.0.0"
}
}