source: node_modules/unraw/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.7 KB
Line 
1{
2 "name": "unraw",
3 "version": "3.0.0",
4 "description": "Convert raw escape sequences to their respective characters (undo String.raw).",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "repository": "https://github.com/iansan5653/unraw",
8 "scripts": {
9 "build": "tsc",
10 "test": "ts-mocha src/**/*.test.ts",
11 "lint": "eslint src/**/*.ts",
12 "check": "npm run build && npm run test && npm run lint",
13 "ensureCleanTree": "echo 'Checking to ensure all changes are committed...' && git diff --quiet --exit-code & git diff --quiet --cached --exit-code",
14 "prepublishOnly": "npm run ensureCleanTree && npm run check",
15 "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",
16 "format": "prettier src/**/*.test.ts --write"
17 },
18 "author": {
19 "name": "Ian Sanders",
20 "url": "https://github.com/iansan5653"
21 },
22 "license": "MIT",
23 "devDependencies": {
24 "@types/mocha": "^7.0.2",
25 "@types/node": "^13.9.5",
26 "@typescript-eslint/eslint-plugin": "^2.25.0",
27 "@typescript-eslint/parser": "^2.25.0",
28 "cross-var": "^1.1.0",
29 "eslint": "^6.8.0",
30 "eslint-config-google": "^0.14.0",
31 "eslint-plugin-jsdoc": "^22.1.0",
32 "eslint-plugin-mocha": "^6.3.0",
33 "mocha": "^7.1.1",
34 "mocha-junit-reporter": "^1.23.3",
35 "prettier": "^2.0.2",
36 "ts-mocha": "^7.0.0",
37 "typescript": "^3.8.3"
38 },
39 "dependencies": {},
40 "files": [
41 "dist/index.d.ts",
42 "dist/index.js",
43 "dist/errors.d.ts",
44 "dist/errors.js"
45 ],
46 "keywords": [
47 "strings",
48 "escapes",
49 "raw strings",
50 "cooked strings",
51 "template literal",
52 "unescape",
53 "unicode",
54 "decode"
55 ]
56}
Note: See TracBrowser for help on using the repository browser.