This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
56
57
58
59
60
61
{
"name": "label-it",
"version": "0.2.2",
"author": "BBVAEngineering",
"license": "MIT",
"description": "",
"preferGlobal": true,
"main": "index.js",
"scripts": {
"pretdd": "npm run check",
"tdd": "npm run mocha -- --watch --bail",
"pretest": "npm run check && npm run lint",
"test": "npm run mocha",
"prebuild": "npm run check && npm run lint -- --max-warnings 0",
"build": "npm run mocha",
"postbuild": "npm run docs",
"lint": "node_modules/.bin/eslint '**/*.js'",
"docs": "node_modules/.bin/yuidoc -c .yuidocrc >/dev/null",
"check": "node_modules/.bin/check-dependencies",
"mocha": "node_modules/.bin/mocha --compilers js:babel-core/register --require babel-polyfill --recursive test",
"postinstall": "node_modules/.bin/babel --out-dir lib src"
},
"bin": {
"labelit": "bin/index.js",
"label-it": "bin/index.js",
"label.it": "bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/BBVAEngineering/label-it"
},
"devDependencies": {
"check-dependencies": "0.12.0",
"eslint": "^4.0.0",
"eslint-config-bbva": "^2.0.0",
"mocha": "2.4.5",
"mock-fs": "4.4.2",
"test-console": "1.0.0",
"yuidocjs": "0.10.0",
"babel-register": "6.6.5"
},
"dependencies": {
"async": "1.5.2",
"babel-cli": "6.7.5",
"babel-plugin-transform-runtime": "6.7.5",
"babel-polyfill": "6.6.1",
"babel-preset-es2015": "6.6.0",
"char-spinner": "1.0.1",
"commander": "2.9.0",
"debug": "2.2.0",
"dot-object": "1.7.0",
"inquirer": "0.12.0",
"jsonlint": "1.6.2",
"lodash": "4.17.4",
"mock-stdin": "0.3.0",
"recursive-readdir": "1.3.0",
"similarity": "1.0.2",
"string-similarity": "1.0.0",
"yield-yield": "1.0.0"
}
}