-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.11 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
{
"name": "multi-sort",
"version": "2.0.0",
"author": "Francisco Madeira",
"homepage": "https://xico2k.github.io/multi-sort/",
"license": "MIT",
"repository": "https://github.com/xico2k/multi-sort",
"main": "lib/index.js",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-jest": "^27.5.1",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"rollup": "^2.70.0",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.6.2",
"typescript-eslint": "^0.0.1-alpha.0"
},
"scripts": {
"prepare": "rm -rf lib && rollup -c",
"test": "NODE_ENV=testing jest",
"lint": "eslint .",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
}
}