-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 914 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 914 Bytes
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
{
"name": "townsclipper",
"version": "0.2.0",
"description": "Townscaper clipboard data format converter",
"keywords": [
"townscaper",
"decoder",
"save-editor",
"format-converter",
"clipboard",
"clipboard-format",
"converter"
],
"homepage": "https://github.com/alvaro-cuesta/townsclipper#readme",
"bugs": "https://github.com/alvaro-cuesta/townsclipper/issues",
"license": "MIT",
"author": "Álvaro Cuesta (https://github.com/alvaro-cuesta/)",
"main": "./lib/index.js",
"bin": {
"townsc": "./bin/townsc.js"
},
"directories": {
"lib": "./lib",
"bin": "./bin",
"test": "./test"
},
"repository": "github:alvaro-cuesta/townsclipper",
"scripts": {
"test": "jest",
"test:diff": "node ./test/index.js"
},
"files": [
"/lib",
"/bin"
],
"devDependencies": {
"jest": "^26.4.2"
}
}