-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
62
63
64
65
66
67
68
{
"name": "fiware-object-storage-ge",
"version": "1.6.0",
"description": "FIWARE Object Storage GE API",
"main": "lib/index.js",
"keywords": [
"FIWARE",
"Object",
"Storage",
"Object Storage"
],
"scripts": {
"lint": "eslint ./lib",
"test": "ava --verbose",
"cover": "nyc --reporter=text --reporter=lcov --reporter=html npm run test",
"coverage": "nyc --reporter=text-lcov npm run test && nyc report --reporter=text-lcov | coveralls",
"watch:test": "npm run test --watch",
"watch:cover": "nodemon --quiet --watch server --watch src --exec npm run cover -s",
"precommit": "npm run test && npm run lint",
"prepush": "npm run test && npm run lint",
"clear-ava": "rm -rf ./node_modules/.cache"
},
"author": "Renārs Vilnis <[email protected]> (https://renarsvilnis.com/)",
"maintainers": [
"Renārs Vilnis <[email protected]> (https://renarsvilnis.com/)"
],
"homepage": "https://github.com/renarsvilnis/fiware-object-storage-ge",
"repository": {
"type": "git",
"url": "https://github.com/renarsvilnis/fiware-object-storage-ge.git"
},
"license": "MIT",
"dependencies": {
"co": "4.6.0",
"debug": "^2.2.0",
"superagent": "^1.6.1"
},
"devDependencies": {
"ava": "0.15.2",
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-preset-es2015": "6.9.0",
"babel-register": "6.9.0",
"coveralls": "2.11.9",
"eslint": "2.11.1",
"eslint-config-renarsvilnis": "1.6.0",
"eslint-config-standard": "5.3.1",
"eslint-loader": "1.3.0",
"eslint-plugin-babel": "3.2.0",
"eslint-plugin-promise": "1.3.2",
"eslint-plugin-react": "5.1.1",
"eslint-plugin-standard": "1.3.2",
"husky": "0.11.4",
"mime": "1.3.4",
"node-uuid": "^1.4.7",
"nodemon": "1.9.2",
"nyc": "6.4.4"
},
"ava": {
"files": [
"./test/index.js"
],
"babel": "inherit",
"require": [
"babel-register"
]
}
}