-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
42
43
44
45
46
47
48
49
{
"name": "@aircall/expression-parser",
"version": "1.0.4",
"description": "Transforms strings with escaping expression templates, evaluating the expressions and returning a new string or the value evaluated from the expression",
"scripts": {
"prepare": "bash ./.huskyrc.sh && husky install",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"linter": "eslint --fix src __mocks__",
"build": "tsc --project tsconfig.local.json",
"prepublish": "npm run-script build"
},
"repository": {
"type": "git",
"url": "https://github.com/aircall/aircall-expression-parser"
},
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Aircall",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"js-x-ray": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@types/faker": "^5.5.6",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"faker": "^5.5.3",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
}
}