-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 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
{
"name": "@economia/checksum-promise",
"version": "1.0.3",
"description": "Get checksum of a file in the browser using promises.",
"module": "src/index.js",
"main": "lib/checksum-promise.js",
"repository": {
"type": "git",
"url": "git+https://github.com/economia/checksum-promise.git"
},
"bugs": {
"url": "https://github.com/economia/checksum-promise/issues"
},
"contributors": [
"Patrik Šlárka <[email protected]>",
"Josef Jadrný <[email protected]>",
"Kryštof Matějka <[email protected]>"
],
"license": "MIT",
"private": false,
"scripts": {
"eslint": "NODE_ENV=test eslint --color src",
"build": "webpack -p --bail --config config/webpack.config.js",
"doc:html": "documentation build ./src/** -f html -o ./docs",
"doc:markdown": "documentation build ./src/** -f md -o ./docs.md",
"doc:lint": "documentation lint ./src/**",
"doc": "npm run doc:lint && npm run doc:markdown && npm run doc:html",
"preversion": "npm run eslint",
"version": "npm run build && npm run doc && git add .",
"prepublish": "npm run build"
},
"dependencies": {
"promise-file-reader": "^1.0.0",
"spark-md5": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"documentation": "^5.3.5",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"webpack": "^3.10.0"
},
"homepage": "https://github.com/economia/checksum-promise#readme",
"directories": {
"doc": "docs"
},
"author": "[email protected]"
}