1{ 2 "name": "is-expression", 3 "version": "3.0.0", 4 "description": "Check if a string is a valid JavaScript expression", 5 "keywords": [ 6 "javascript", 7 "expression" 8 ], 9 "dependencies": { 10 "acorn": "~4.0.2", 11 "object-assign": "^4.0.1" 12 }, 13 "devDependencies": { 14 "istanbul": "*", 15 "testit": "^2.0.2" 16 }, 17 "scripts": { 18 "test": "node test && npm run coverage", 19 "coverage": "istanbul cover test.js" 20 }, 21 "repository": { 22 "type": "git", 23 "url": "https://github.com/pugjs/is-expression.git" 24 }, 25 "author": "Timothy Gu <timothygu99@gmail.com>", 26 "license": "MIT" 27} 28