-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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": "@freshworks-jaya/utilities",
"version": "1.0.0",
"description": "Provides a function that can replace placeholders in a string with a given map.",
"repository": "[email protected]:freshdesk/jaya-lib.git",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf lib coverage .nyc_output",
"watch": "tsc --watch --incremental",
"coverage": "codecov",
"test": "nyc --reporter=lcov mocha",
"build": "tsc",
"build:check": "tsc --noEmit",
"lint": "tsc --noEmit && eslint 'src/**/*.ts' --quiet --fix",
"prepare": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"chai": "^4.3.4",
"codecov": "^3.8.1",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"moment-timezone": "^0.5.33"
}
}