-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 KB
/
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
41
42
43
44
45
46
47
48
49
{
"name": "acorn-node",
"description": "the acorn javascript parser, preloaded with plugins for syntax parity with recent node versions",
"version": "2.0.1",
"author": "Renée Kooi <renee@kooi.me>",
"bugs": {
"url": "https://github.com/browserify/acorn-node/issues"
},
"dependencies": {
"acorn": "^8.8.2",
"acorn-walk": "^8.2.0",
"setprototypeof": "^1.2.0",
"xtend": "^4.0.2"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"mkdirp": "^0.5.5",
"npm-run-all": "^4.1.5",
"standard": "^13.1.0",
"tape": "^4.13.3"
},
"homepage": "https://github.com/browserify/acorn-node",
"keywords": [
"acorn",
"browserify",
"javascript",
"parser"
],
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/browserify/acorn-node.git"
},
"scripts": {
"lint": "standard",
"test": "node test",
"prepare": "npm run build && node test",
"build:self": "babel src --out-dir .",
"build": "npm-run-all --parallel build:*"
},
"standard": {
"ignore": [
"lib/**/*"
]
}
}