1{
2  "name": "acorn-logical-assignment",
3  "version": "0.1.3",
4  "description": "Support for logical assignments in acorn",
5  "main": "dist/acorn-logical-assignment.js",
6  "module": "dist/acorn-logical-assignment.mjs",
7  "repository": "https://github.com/acornjs/acorn-logical-assignment",
8  "author": "Adrian Heine <mail@adrianheine.de>",
9  "license": "MIT",
10  "engines": {
11    "node": ">=4.8.2"
12  },
13  "scripts": {
14    "build": "rollup -c rollup.config.js",
15    "prepare": "npm run build",
16    "test": "mocha",
17    "test:test262": "node run_test262.js",
18    "lint": "eslint -c .eslintrc.json ."
19  },
20  "peerDependencies": {
21    "acorn": "^6 || ^7"
22  },
23  "devDependencies": {
24    "acorn": "^7.3",
25    "eslint": "^7",
26    "eslint-plugin-node": "^11",
27    "mocha": "^8",
28    "rollup": "^2.10.0",
29    "test262": "git+https://github.com/tc39/test262.git#adf2cf4204a748463cacb68f07d0d006b00c3821",
30    "test262-parser-runner": "^0.5.0"
31  }
32}
33