-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 909 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
{
"name": "acorn-macros",
"private": true,
"description": "Framework for evaluating and replacing macros in JS",
"type": "module",
"license": "MIT",
"author": "Gen Hames",
"repository": {
"type": "git",
"url": "https://github.com/heyheyhello/acorn-macros"
},
"scripts": {
"build": "node build.js",
"test": "bash -c 'set -x; cd ./test/${0:-all} && esbuild esbuild.ts | node --input-type=module'"
},
"devDependencies": {
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"esbuild": "^0.11.15",
"eslint": "^7.25.0",
"node-fetch": "^2.6.1",
"typescript": "^4.2.4"
},
"dependencies": {
"acorn-macros": "file:packages/acorn-macros",
"ms.acorn": "file:packages/ms.acorn",
"preval.acorn": "file:packages/preval.acorn",
"style.acorn": "file:packages/style.acorn"
}
}