66 lines
1.7 KiB
JSON
66 lines
1.7 KiB
JSON
{
|
|
"name": "outdent",
|
|
"version": "0.8.0",
|
|
"description": "Remove leading indentation from ES6 template literals.",
|
|
"main": "lib/index.js",
|
|
"jsnext:main": "lib-module/index.js",
|
|
"module": "lib-module/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"scripts": {
|
|
"clean": "ts-node-script ./scripts/run.ts",
|
|
"build": "ts-node-script ./scripts/run.ts",
|
|
"test": "ts-node-script ./scripts/run.ts",
|
|
"lint": "ts-node-script ./scripts/run.ts",
|
|
"format": "ts-node-script ./scripts/run.ts",
|
|
"prepack": "ts-node-script ./scripts/run.ts",
|
|
"setup": "ts-node-script ./scripts/run.ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/cspotcode/outdent.git"
|
|
},
|
|
"keywords": [
|
|
"es6",
|
|
"es2015",
|
|
"template string",
|
|
"template literal",
|
|
"interpolation",
|
|
"string",
|
|
"template",
|
|
"indent"
|
|
],
|
|
"author": "Andrew Bradley <cspotcode@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/cspotcode/outdent/issues"
|
|
},
|
|
"homepage": "https://github.com/cspotcode/outdent#readme",
|
|
"devDependencies": {
|
|
"@types/chai": "^4.0.4",
|
|
"@types/fs-extra": "^9.0.5",
|
|
"@types/mocha": "^2.2.43",
|
|
"@types/node": "^14.14.12",
|
|
"@types/webpack": "^4.4.11",
|
|
"@types/which": "^1.0.28",
|
|
"chai": "^4.1.2",
|
|
"execa": "^5.0.0",
|
|
"fs-extra": "^9.0.1",
|
|
"mocha": "^4.0.1",
|
|
"np": "^6.2.0",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": ">=4.1.3 <4.2",
|
|
"webpack": "^4.17.2",
|
|
"which": "^1.3.0"
|
|
},
|
|
"files": [
|
|
"/lib",
|
|
"/lib-module",
|
|
"/src",
|
|
"/LICENSE",
|
|
"/README.md",
|
|
"/tsconfig-build.json",
|
|
"/tsconfig-lib.json",
|
|
"/tsconfig-module.json",
|
|
"/tsconfig.json"
|
|
]
|
|
} |