Projekt

Obecné

Profil

Stáhnout (1.02 KB) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
{
2
  "name": "esutils",
3
  "description": "utility box for ECMAScript language tools",
4
  "homepage": "https://github.com/estools/esutils",
5
  "main": "lib/utils.js",
6
  "version": "2.0.3",
7
  "engines": {
8
    "node": ">=0.10.0"
9
  },
10
  "directories": {
11
    "lib": "./lib"
12
  },
13
  "files": [
14
    "LICENSE.BSD",
15
    "README.md",
16
    "lib"
17
  ],
18
  "maintainers": [
19
    {
20
      "name": "Yusuke Suzuki",
21
      "email": "utatane.tea@gmail.com",
22
      "web": "http://github.com/Constellation"
23
    }
24
  ],
25
  "repository": {
26
    "type": "git",
27
    "url": "http://github.com/estools/esutils.git"
28
  },
29
  "devDependencies": {
30
    "chai": "~1.7.2",
31
    "coffee-script": "~1.6.3",
32
    "jshint": "2.6.3",
33
    "mocha": "~2.2.1",
34
    "regenerate": "~1.3.1",
35
    "unicode-9.0.0": "~0.7.0"
36
  },
37
  "license": "BSD-2-Clause",
38
  "scripts": {
39
    "test": "npm run-script lint && npm run-script unit-test",
40
    "lint": "jshint lib/*.js",
41
    "unit-test": "mocha --compilers coffee:coffee-script -R spec",
42
    "generate-regex": "node tools/generate-identifier-regex.js"
43
  }
44
}