-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 965 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
{
"name": "utils-and-helpers",
"version": "2.1.0",
"description": "common utilities that can be used across a variety of projects",
"author": "davidjohnbell",
"license": "MIT",
"keywords": [
"utils",
"helpers",
"enums",
"validate"
],
"main": "main.js",
"types": "main.d.ts",
"scripts": {
"build": "tsc",
"copyfiles": "copyfiles package.json package-lock.json README.md lib/src",
"test": "npm run build && mocha lib/tests/**/*.test.js"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.7",
"chai": "^4.2.0",
"copyfiles": "^2.2.0",
"mocha": "^7.1.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/davidjohnbell/utils-and-helpers.git"
}
}