-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 987 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
39
{
"name": "bigjs-literal",
"version": "0.2.2",
"description": "Template literal for Big.js expressions.",
"main": "src/index.js",
"repository": "https://github.com/reu/bigjs-literal",
"author": "Rodrigo Navarro",
"license": "MIT",
"config": {
"exportAliases": {
"macro": "./src/macro"
}
},
"scripts": {
"benchmark": "npm run compile && node benchmark/against-raw-big.js",
"compile": "npx pegjs -o src/parser.js src/parser.pegjs",
"prepublish": "npx generate-export-aliases && npm run compile",
"test": "npm run compile && npx jest"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"babel-plugin-macros": "^2.8.0",
"benchmark": "^2.1.4",
"big.js": "^5",
"generate-export-aliases": "^1.1.0",
"jest": "^26.4.1",
"microtime": "^3.0.0",
"pegjs": "^0.10.0"
},
"peerDependencies": {
"big.js": "*"
},
"keywords": [
"big.js",
"decimal",
"babel-plugin-macros",
"babel-macros"
]
}