-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "human2bytes",
"version": "1.1.1",
"description": "h2b('1K') → 1024",
"main": "src-build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nskazki/human2bytes.git"
},
"keywords": [
"human",
"bytes",
"converter",
"filesize",
"size"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nskazki/human2bytes/issues"
},
"homepage": "https://github.com/nskazki/human2bytes#readme",
"scripts": {
"prepublish": "npm run build",
"build": "babel src --retain-lines --out-dir src-build",
"eslint": "eslint $(find . -not -path '*/*-build/*' -not -path '*/node_modules/*' -type f -name '*.es6')",
"mocha": "mocha test",
"test": "npm run eslint && npm run mocha",
"npmignore": "npm pack . > /dev/null && tar -tvf *.tgz && rm *.tgz"
},
"author": "[email protected]",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^4.1.6",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-espower": "^2.1.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"eslint": "1.10.1",
"eslint-plugin-mocha": "^1.1.0",
"filesize": "^3.2.0",
"mocha": "^2.3.4",
"power-assert": "^1.2.0"
},
"dependencies": {
"debug": "^2.2.0",
"lodash": "^4.0.1"
},
"directories": {
"test": "test"
}
}