forked from xom9ikk/split
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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": "split",
"version": "1.0.0",
"private": true,
"description": "Github Action for splitting strings into parts by separator with limit",
"main": "dist/index.js",
"scripts": {
"build": "npm run lint:fix && ncc build src/main.ts --out dist/ --minify",
"tsc": "npm run clean && tsc",
"clean": "rimraf dist/*",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "eslint --ext .js,.ts ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xom9ikk/split.git"
},
"keywords": [
"split",
"node",
"github",
"actions"
],
"author": "Max Romanyuta <xom9ik.code@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@vercel/ncc": "^0.25.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}