-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "@dtsgenerator/single-quote",
"version": "1.7.1",
"description": "change all quotation mark to single",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf index.js test/**/*.js *.tsbuildinfo",
"format": "prettier --write **/*.ts",
"lint": "eslint --fix *.ts **/*.ts",
"fix": "npm run format && npm run lint",
"compile": "tsc -p .",
"build": "npm run fix && npm run compile",
"do-test": "cross-env TS_NODE_FILES=true mocha --exit --require ts-node/register --colors test/*_test.ts",
"test": "nyc npm run do-test",
"coverage": "nyc report --reporter=lcov",
"test:update-snapshot": "UPDATE_SNAPSHOT=1 npm run do-test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dtsgenerator/single-quote.git"
},
"keywords": [
"dtsgenerator",
"dtsgenerator-plugin"
],
"author": "Horiuchi Hiroki <horiuchi.g@gmail.com> (https://github.com/horiuchi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtsgenerator/single-quote/issues"
},
"homepage": "https://github.com/dtsgenerator/single-quote#readme",
"devDependencies": {
"@dtsgenerator/eslint-config": "^0.7.2",
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.36",
"cross-env": "^7.0.3",
"dtsgenerator": "^3.19.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2"
},
"peerDependencies": {
"dtsgenerator": "^3.19.2",
"tslib": "^2.6.3"
},
"lint-staged": {
"**/*.ts": [
"prettier --write",
"eslint --fix"
]
}
}