-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 885 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
36
37
38
{
"name": "simple-expressions",
"version": "0.0.15",
"main": "lib/index.js",
"type": "commonjs",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"keywords": [
"parser",
"lexer",
"script",
"execution"
],
"author": "Steven Thuriot",
"license": "ISC",
"description": "Simple expression parsing and execution",
"scripts": {
"build": "tsc",
"test": "jest",
"all": "npm run build && npm run test"
},
"types": "./lib\\index.d.ts",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StevenThuriot/simple-expressions.git"
},
"bugs": {
"url": "https://github.com/StevenThuriot/simple-expressions/issues"
},
"homepage": "https://github.com/StevenThuriot/simple-expressions#readme"
}