mirror of https://gitee.com/antv-l7/antv-l7
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
|
{
|
||
|
"name": "is-reference",
|
||
|
"version": "1.1.4",
|
||
|
"description": "Determine whether an AST node is a reference",
|
||
|
"main": "dist/is-reference.js",
|
||
|
"module": "dist/is-reference.es.js",
|
||
|
"types": "dist/types/index.d.ts",
|
||
|
"files": [
|
||
|
"dist/*.js",
|
||
|
"dist/types/**/*.d.ts"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"test": "mocha",
|
||
|
"build": "rollup -c && tsc --emitDeclarationOnly",
|
||
|
"pretest": "npm run build",
|
||
|
"prepare": "npm run build",
|
||
|
"prepublishOnly": "npm test"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/Rich-Harris/is-reference.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"ast",
|
||
|
"javascript",
|
||
|
"estree",
|
||
|
"acorn"
|
||
|
],
|
||
|
"author": "Rich Harris",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/Rich-Harris/is-reference/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/Rich-Harris/is-reference#readme",
|
||
|
"dependencies": {
|
||
|
"@types/estree": "0.0.39"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"acorn": "^6.1.1",
|
||
|
"estree-walker": "^0.6.0",
|
||
|
"mocha": "^6.0.2",
|
||
|
"rollup": "^1.7.0",
|
||
|
"rollup-plugin-typescript": "^1.0.1",
|
||
|
"tslib": "^1.9.3",
|
||
|
"typescript": "^3.3.4000"
|
||
|
}
|
||
|
}
|