-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 915 Bytes
/
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
{
"name": "sarcasm",
"version": "1.0.3",
"description": "Best library to show your appriciation",
"main": "lib/sarcasm.js",
"repository": "[email protected]:komlev/sarcasm.git",
"author": "Valeriy Komlev <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack",
"test": "jest"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"coveralls": "^2.11.15",
"jest": "^18.1.0",
"webpack": "2.1.0-beta.27"
},
"keywords": [
"sarcasm",
"es6",
"js",
"framework",
"library"
],
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/lib/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura",
"clover"
]
}
}