-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "puz-parser",
"version": "0.0.1",
"description": "Library for manipulating Across Lite crossword puzzles",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --coverage --passWithNoTests",
"tsc": "tsc",
"lint": "eslint . --ext .ts",
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lennonc/puz-parser"
},
"keywords": [
"nodejs",
".puz",
"crossword"
],
"author": "Lennon Chimbumu",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "7.4.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "^23.18.0",
"jest": "26.1.0",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}