source: frontend/node_modules/estree-walker/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 743 bytes
Line 
1{
2 "name": "estree-walker",
3 "description": "Traverse an ESTree-compliant AST",
4 "version": "1.0.1",
5 "author": "Rich Harris",
6 "license": "MIT",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/Rich-Harris/estree-walker"
10 },
11 "main": "dist/estree-walker.umd.js",
12 "module": "src/estree-walker.js",
13 "types": "types/index.d.ts",
14 "scripts": {
15 "prepublishOnly": "npm run build && npm test",
16 "build": "tsc && rollup -c",
17 "test": "mocha --opts mocha.opts"
18 },
19 "devDependencies": {
20 "@types/estree": "0.0.39",
21 "mocha": "^5.2.0",
22 "rollup": "^0.67.3",
23 "rollup-plugin-sucrase": "^2.1.0",
24 "typescript": "^3.6.3"
25 },
26 "files": [
27 "src",
28 "dist",
29 "types",
30 "README.md"
31 ]
32}
Note: See TracBrowser for help on using the repository browser.