-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.81 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
{
"name": "mickey-model-extend",
"version": "1.0.1",
"description": "Utility method to extend mickey model.",
"main": "./lib/index.js",
"keywords": [
"mickey",
"model",
"extend",
"utility"
],
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mickeyjsx/mickey-model-extend.git"
},
"bugs": {
"url": "https://github.com/mickeyjsx/mickey-model-extend/issues"
},
"homepage": "https://github.com/mickeyjsx/mickey-model-extend#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"mocha": "^3.5.3",
"nyc": "^11.1.0",
"rimraf": "^2.6.1"
},
"files": [
"lib",
"src"
],
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"html",
"text"
],
"require": [
"babel-register"
],
"report-dir": "./test/coverage",
"sourceMap": false,
"instrument": false
},
"scripts": {
"test": "cross-env NODE_ENV=test nyc mocha --no-timeouts",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ext .js src",
"build": "rimraf lib && babel src --out-dir lib",
"prebuild": "npm run lint",
"prepublish": "npm run build",
"precommit": "npm run lint"
}
}