aboutsummaryrefslogtreecommitdiff
path: root/node_modules/espurify/package.json
blob: d17f1c3810faaa0a6ecf1abc9642b89b38dcb322 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
  "name": "espurify",
  "description": "Clone new AST without extra properties",
  "version": "1.8.1",
  "author": {
    "name": "Takuto Wada",
    "email": "takuto.wada@gmail.com",
    "url": "https://github.com/twada"
  },
  "bugs": "https://github.com/estools/espurify/issues",
  "dependencies": {
    "core-js": "^2.0.0"
  },
  "devDependencies": {
    "acorn": "^5.0.0",
    "babel-types": "^6.3.20",
    "babylon": "^6.3.20",
    "browserify": "^13.0.0",
    "derequire": "^2.0.2",
    "dereserve": "^1.0.0",
    "esprima": "^4.0.0",
    "estraverse": "^4.1.0",
    "licensify": "^3.1.0",
    "mocha": "^5.0.0",
    "semistandard": "^12.0.0",
    "snazzy": "^7.0.0"
  },
  "files": [
    "CHANGELOG.md",
    "MIT-LICENSE.txt",
    "README.md",
    "index.js",
    "lib",
    "build/espurify.js",
    "package.json"
  ],
  "homepage": "https://github.com/estools/espurify",
  "keywords": [
    "ast",
    "estree",
    "ecmascript",
    "es6"
  ],
  "license": "MIT",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "git://github.com/estools/espurify.git"
  },
  "scripts": {
    "preversion": "npm test",
    "version": "npm run dist && git add -A build",
    "dist": "browserify index.js --plugin licensify --standalone espurify | dereserve | derequire > ./build/espurify.js",
    "lint": "semistandard --verbose index.js lib test | snazzy",
    "fmt": "semistandard --fix index.js lib test",
    "test": "npm run lint && mocha test"
  },
  "semistandard": {
    "ignore": [
      "/build/",
      "/bench/",
      "**/*.jsx"
    ],
    "globals": [
      "describe",
      "beforeEach",
      "it"
    ]
  }
}