forked from jimmycuadra/shellwords
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.2 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
{
"author": "Marques Lee <[email protected]>",
"name": "shellwords-ts",
"description": "JS lib with TS typings to manipulate strings according to the word parsing rules of the UNIX Bourne shell.",
"version": "3.0.1",
"homepage": "https://github.com/marques-work/shellwords",
"repository": {
"type": "git",
"url": "git://github.com/marques-work/shellwords.git"
},
"main": "./dist/shellwords.js",
"types": "./dist/shellwords.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p .",
"fmt": "tsfmt --useTsfmt tsfmt.json -r",
"lint": "tsfmt --useTsfmt tsfmt.json --verify && eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run fmt && npm run lint -- --fix",
"test": "mocha --require ts-node/register --watch-extensions ts,tsx \"spec/**/*_spec.{ts,tsx}\""
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"chai": "^4.3.7",
"eslint": "^8.28.0",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"typescript-formatter": "^7.2.2"
}
}