Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « is-npm « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c6f3800a677779f77ce1483b388a2c1f9a9a83a (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
{
  "name": "is-npm",
  "version": "1.0.0",
  "description": "Check if your code is running as an npm script",
  "license": "MIT",
  "repository": "sindresorhus/is-npm",
  "author": {
    "name": "Sindre Sorhus",
    "email": "sindresorhus@gmail.com",
    "url": "http://sindresorhus.com"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "scripts": {
    "test": "node test.js"
  },
  "files": [
    "index.js"
  ],
  "keywords": [
    "npm",
    "is",
    "check",
    "detect",
    "env",
    "environment"
  ],
  "devDependencies": {
    "ava": "0.0.3"
  }
}