-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 962 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
{
"name": "@saas-plat/expression",
"version": "1.0.4",
"description": "expression",
"productName": "saas-plat",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && babel src --out-dir dist --source-maps",
"antlr": "antlr4 -Dlanguage=JavaScript ./src/Expr.g4 -o ./src",
"watch": "set DEBUG=saas-plat-expression:*,-not_this && mocha --watch",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "[email protected]:saas-plat/expression.git"
},
"keywords": [
"expression"
],
"author": "saas-plat",
"license": "ISC",
"dependencies": {
"antlr4": "^4.6.0",
"moment": "^2.22.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-eslint": "^8.0.3",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^5.2.0"
}
}