-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.7 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
48
49
50
51
52
53
54
55
{
"name": "unraw",
"version": "3.0.0",
"description": "Convert raw escape sequences to their respective characters (undo String.raw).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/iansan5653/unraw",
"scripts": {
"build": "tsc",
"test": "ts-mocha src/**/*.test.ts",
"lint": "eslint src/**/*.ts",
"check": "npm run build && npm run test && npm run lint",
"ensureCleanTree": "echo 'Checking to ensure all changes are committed...' && git diff --quiet --exit-code & git diff --quiet --cached --exit-code",
"prepublishOnly": "npm run ensureCleanTree && npm run check",
"postpublish": "cross-var git tag -a $npm_package_version -m \"See changelog.md for release notes.\" && git push --tags && cross-var git tag -d $npm_package_version",
"format": "prettier src/**/*.ts --write"
},
"author": {
"name": "Ian Sanders",
"url": "https://github.com/iansan5653"
},
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"cross-var": "^1.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.1.6"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/errors.d.ts",
"dist/errors.js"
],
"keywords": [
"strings",
"escapes",
"raw strings",
"cooked strings",
"template literal",
"unescape",
"unicode",
"decode"
]
}