-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.28 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
69
70
71
72
73
74
75
76
{
"name": "marvel-wrapper",
"version": "1.0.9",
"description": "Wrapper to work with the Marvel Web API",
"main": "lib/index.js",
"scripts": {
"clear": "rimraf lib && rimraf dist",
"create:lib": "./node_modules/.bin/babel --out-dir lib src",
"build": "npm run clear && npm run create:lib",
"build:watch": "npm run clear && npm run create:lib -- --watch",
"build:umd": "./node_modules/.bin/webpack --output-filename marvel-wrapper.js",
"build:umd:min": "./node_modules/.bin/webpack --output-filename marvel-wrapper.min.js -p",
"build:all": "npm run build && npm run build:umd && npm run build:umd:min",
"lint": "./node_modules/.bin/eslint src/*.js",
"prepush": "npm run lint && npm run test:coverage",
"test": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register",
"test:tdd": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register --watch",
"test:coverage": "nyc npm test",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls"
},
"files": [
"dist",
"lib"
],
"nyc": {
"functions": 80,
"lines": 80,
"check-coverage": true,
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhonesgoncal/marvel-wrapper.git"
},
"keywords": [
"js",
"tdd",
"library"
],
"author": "Jhones Goncalves <[email protected]> (http://jhonesgoncalves.esy.es/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jhonesgoncal/marvel-wrapper/issues"
},
"homepage": "https://github.com/jhonesgoncal/marvel-wrapper#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.11.9",
"mocha": "^4.0.1",
"node-fetch": "^1.7.3",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0",
"sinon-stub-promise": "^4.0.0",
"uglifyjs-webpack-plugin": "^1.1.5",
"webpack": "^2.4.1"
},
"dependencies": {
"eslint": "^4.12.1",
"md5": "^2.2.1"
}
}