-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.14 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
{
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"version": "0.3.4",
"name": "@dylanarmstrong/puz",
"license": "ISC",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@dylanarmstrong/eslint-config": "^0.2.5",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.13.0",
"typescript": "^4.3.5"
},
"scripts": {
"build": "rm -rf dist/{cjs,mjs} && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"lint": "eslint src",
"test": "node ./test.js"
},
"author": "Dylan Armstrong <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/dylanarmstrong/puz"
},
"bugs": {
"url": "https://github.com/dylanarmstrong/puz/issues"
},
"homepage": "https://github.com/dylanarmstrong/puz",
"keywords": [
"crossword",
"crosswords",
"puz",
"puz-parser",
"puz-file-format"
],
"description": "Just a simple .puz parser",
"files": [
"src",
"dist/mjs",
"dist/cjs"
]
}