-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 932 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
40
{
"name": "es-serializer",
"version": "1.0.0",
"description": "ES AST serializer",
"main": "index.js",
"module": "index.js",
"esnext": "index.js",
"types": "index.d.ts",
"browser": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/TimLuq/es-serializer.git"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@types/estree": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"acorn": "^8.8.0",
"eslint": "^8.24.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.4",
"uvu": "^0.5.6"
},
"scripts": {
"build": "rollup -c",
"clean": "rm ./*-*.js ./*-*.js.map ./*-*.d.ts",
"test": "uvu test/specs"
},
"keywords": [
"estree",
"ast",
"syntax",
"serializer"
],
"author": "TimLuq",
"license": "MIT"
}