forked from eggheadio-github/stack-overflow-copy-paste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.57 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "stack-overflow-copy-paste",
"description": "Utility functions copy/pasted (and modified slightly) from Stack Overflow",
"version": "0.0.0-semantically-released",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf dist",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"build": "babel src/ -d dist/",
"test": "cross-env NODE_ENV=test nyc ava --concurrency 5",
"test:watch": "ava --watch --require babel-register --concurrency 5",
"lint": "eslint src/",
"validate": "npm-run-all lint test build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/eggheadio-github/stack-overflow-copy-paste.git"
},
"keywords": [],
"files": [
"dist"
],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggheadio-github/stack-overflow-copy-paste/issues"
},
"homepage": "https://github.com/eggheadio-github/stack-overflow-copy-paste#readme",
"devDependencies": {
"ava": "0.16.0",
"babel-cli": "6.11.4",
"babel-eslint": "6.1.2",
"babel-plugin-istanbul": "1.0.3",
"babel-preset-es2015": "6.13.2",
"babel-preset-stage-2": "6.13.0",
"babel-register": "6.11.6",
"codecov.io": "0.1.6",
"commitizen": "2.8.5",
"cross-env": "2.0.0",
"cz-conventional-changelog": "1.1.7",
"eslint": "3.2.2",
"eslint-config-kentcdodds": "9.0.3",
"eslint-plugin-ava": "3.0.0",
"eslint-plugin-babel": "3.3.0",
"eslint-plugin-import": "1.13.0",
"ghooks": "1.3.2",
"nodemon": "1.10.0",
"npm-run-all": "2.3.0",
"nyc": "7.1.0",
"rimraf": "2.5.4",
"semantic-release": "4.3.5",
"validate-commit-msg": "2.6.1"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "npm run validate"
},
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"all": true,
"check-coverage": true,
"branches": 100,
"function": 100,
"lines": 100,
"statements": 100,
"reporter": [
"text",
"lcov"
],
"include": [
"src"
],
"sourceMap": false,
"instrument": false,
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"eslintConfig": {
"extends": [
"kentcdodds",
"kentcdodds/ava"
]
}
}