You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
810 B
35 lines
810 B
{
|
|
"name": "constantinople",
|
|
"version": "3.1.2",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"description": "Determine whether a JavaScript expression evaluates to a constant (using acorn)",
|
|
"keywords": [
|
|
"acorn",
|
|
"ast",
|
|
"tooling"
|
|
],
|
|
"dependencies": {
|
|
"@types/babel-types": "^7.0.0",
|
|
"@types/babylon": "^6.16.2",
|
|
"babel-types": "^6.26.0",
|
|
"babylon": "^6.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^9.4.4",
|
|
"mocha": "*",
|
|
"typescript": "^2.7.1"
|
|
},
|
|
"scripts": {
|
|
"prepublish": "npm run build",
|
|
"build": "tsc",
|
|
"pretest": "npm run build",
|
|
"test": "mocha -R spec"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ForbesLindesay/constantinople.git"
|
|
},
|
|
"author": "ForbesLindesay",
|
|
"license": "MIT"
|
|
}
|