-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 KB
/
package.json
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
{
"name": "npm-lint-locked",
"version": "0.1.0",
"description": "Simple linter for versions in your package.json. It's better to keep them locked.",
"main": "./lib/index.js",
"bin": "./lib/bin/cli.js",
"scripts": {
"clean": "./node_modules/.bin/rimraf lib",
"build": "./node_modules/.bin/babel src --out-dir lib",
"lint": "./node_modules/.bin/eslint src test",
"test": "NODE_ENV=test mocha",
"test:watch": "NODE_ENV=test mocha --watch",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/suevalov/npm-lint-locked.git"
},
"keywords": [
"locked",
"versions",
"npm",
"linter"
],
"author": "Alexander Suevalov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/suevalov/npm-lint-locked/issues"
},
"files": [
"lib"
],
"homepage": "https://github.com/suevalov/npm-lint-locked",
"engines": {
"node": ">=0.10"
},
"devDependencies": {
"babel": "6.3.13",
"babel-cli": "6.3.17",
"babel-core": "6.3.17",
"babel-eslint": "4.1.6",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-1": "6.3.13",
"eslint": "1.10.3",
"eslint-config-airbnb": "2.1.1",
"expect": "1.13.2",
"mocha": "2.3.4",
"rimraf": "2.3.4"
},
"dependencies": {
"chalk": "1.1.1",
"lodash": "3.10.1",
"semver": "5.1.0"
}
}