forked from FLOIP/expression-evaluator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 692 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 692 Bytes
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
{
"name": "@floip/expression-evaluator",
"version": "1.2.5",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -f tsconfig.tsbuildinfo && rm -rf dist/",
"build": "tsc --declaration",
"test": "jest",
"watch": "tsc --watch"
},
"author": "Kyle Seifert",
"license": "MIT",
"dependencies": {
"@floip/expression-parser": "^1.10.0",
"moment": "^2.24.0"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"jest": "^24.8.0",
"mockdate": "^2.0.5",
"ts-jest": "^24.0.2",
"tsc": "^1.20150623.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}