package.json 631 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
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
{
  "name": "is-expression",
  "version": "4.0.0",
  "files": [
    "index.js"
  ],
  "description": "Check if a string is a valid JavaScript expression",
  "keywords": [
    "javascript",
    "expression"
  ],
  "dependencies": {
    "acorn": "^7.1.1",
    "object-assign": "^4.1.1"
  },
  "devDependencies": {
    "nyc": "^15.0.1",
    "testit": "^3.1.0"
  },
  "scripts": {
    "test": "node test && npm run coverage",
    "coverage": "nyc node test.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/pugjs/is-expression.git"
  },
  "author": "Timothy Gu <timothygu99@gmail.com>",
  "license": "MIT"
}