-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 KB
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": "ts-nodash",
"version": "1.3.9",
"description": "Provides object manipulation tools.",
"main": "lib/index.js",
"module": "src/index.ts",
"scripts": {
"build": "tsc",
"clean": "rm -r lib coverage .nyc_output dist",
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts __tests__/**/*.ts",
"postinstall": "npm run build",
"test": "alsatian \"__tests__/**/*.test.ts\" --tap | tap-bark",
"test:coverage": "nyc --reporter=lcov --reporter=html npm run test && nyc report"
},
"author": "Shawn Rapp (BadOPCode)",
"license": "MIT",
"dependencies": {
"typescript": "^4.9.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"alsatian": "^2.4.0",
"eslint": "^8.7.0",
"nyc": "^15.1.0",
"tap-bark": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/BadOPCode/NoDash.git"
},
"keywords": [
"object",
"compare",
"merge",
"context",
"library",
"typescript"
]
}