summaryrefslogtreecommitdiff
path: root/deps/acorn/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'deps/acorn/package.json')
-rw-r--r--deps/acorn/package.json52
1 files changed, 52 insertions, 0 deletions
diff --git a/deps/acorn/package.json b/deps/acorn/package.json
new file mode 100644
index 0000000000..56c63a4a93
--- /dev/null
+++ b/deps/acorn/package.json
@@ -0,0 +1,52 @@
+{
+ "name": "acorn",
+ "description": "ECMAScript parser",
+ "homepage": "https://github.com/ternjs/acorn",
+ "main": "dist/acorn.js",
+ "module": "dist/acorn.es.js",
+ "version": "5.2.1",
+ "engines": {
+ "node": ">=0.4.0"
+ },
+ "maintainers": [
+ {
+ "name": "Marijn Haverbeke",
+ "email": "marijnh@gmail.com",
+ "web": "http://marijnhaverbeke.nl"
+ },
+ {
+ "name": "Ingvar Stepanyan",
+ "email": "me@rreverser.com",
+ "web": "http://rreverser.com/"
+ }
+ ],
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/ternjs/acorn.git"
+ },
+ "license": "MIT",
+ "scripts": {
+ "prepare": "npm test",
+ "test": "node test/run.js && node test/lint.js",
+ "pretest": "npm run build:main && npm run build:loose",
+ "build": "npm run build:main && npm run build:walk && npm run build:loose && npm run build:bin",
+ "build:main": "rollup -c rollup/config.main.js",
+ "build:walk": "rollup -c rollup/config.walk.js",
+ "build:loose": "rollup -c rollup/config.loose.js && rollup -c rollup/config.loose_es.js",
+ "build:bin": "rollup -c rollup/config.bin.js",
+ "lint": "eslint src/"
+ },
+ "bin": {
+ "acorn": "./bin/acorn"
+ },
+ "devDependencies": {
+ "eslint": "^3.18.0",
+ "eslint-config-standard": "^7.1.0",
+ "eslint-plugin-import": "^2.2.0",
+ "eslint-plugin-promise": "^3.5.0",
+ "eslint-plugin-standard": "^2.1.1",
+ "rollup": "^0.43.0",
+ "rollup-plugin-buble": "^0.15.0",
+ "unicode-9.0.0": "^0.7.0"
+ }
+}