-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
{
"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 <[email protected]>",
"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": "^5.95.0",
"which": "^1.3.0"
},
"files": [
"/lib",
"/lib-module",
"/src",
"/LICENSE",
"/README.md",
"/tsconfig-build.json",
"/tsconfig-lib.json",
"/tsconfig-module.json",
"/tsconfig.json"
]
}