-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 951 Bytes
/
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": "preposisjon",
"version": "1.2.1",
"description": "Finn riktig preposisjon",
"main": "./lib/index.js",
"scripts": {
"lint": "prettier src --check",
"test": "mocha -r ts-node/register tests/test.ts --ui tdd",
"build": "rm -rf lib && tsc",
"prepublish": "npm test && npm run build"
},
"bin": {
"preposisjon": "lib/cli.js"
},
"files": [
"lib",
"types.flow.js"
],
"repository": {
"type": "git",
"url": "https://github.com/draperunner/preposisjon.git"
},
"author": "Mats Byrkjeland <matsbyr@gmail.com>",
"license": "MIT",
"types": "./lib/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint"
}
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.12.0",
"eslint": "^9.19.0",
"husky": "^9.1.7",
"mocha": "^11.1.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}