-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 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
{
"name": "@opt-tech/gtm-json-converter",
"version": "0.0.0-development",
"description": "Google Tag Manager がエクスポートした JSON をエクセルで開ける CSV に変換します",
"keywords": [
"converter",
"csv",
"excel",
"gtm",
"json"
],
"homepage": "https://github.com/opt-tech/gtm-json-converter#readme",
"bugs": {
"url": "https://github.com/opt-tech/gtm-json-converter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opt-tech/gtm-json-converter.git"
},
"license": "MIT",
"files": [
"bin",
"lib"
],
"main": "lib",
"bin": {
"gtm-json-converter": "bin/index.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"dev": "nodemon test",
"format": "npm run prettier-base -- --write",
"lint": "npm run prettier-base -- -c",
"prettier-base": "prettier --ignore-path .gitignore \"**/*.{js,json,md}\"",
"start": "node bin",
"pretest": "npm run lint",
"test": "node test"
},
"dependencies": {
"dayjs": "1.10.4",
"sanitize-filename": "1.6.3"
},
"devDependencies": {
"nodemon": "2.0.7",
"prettier": "2.2.1",
"prettier-plugin-packagejson": "2.0.10"
},
"engines": {
"node": ">= 10",
"npm": ">= 6.4"
},
"publishConfig": {
"access": "public"
}
}