This repository has been archived by the owner on Jun 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.76 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
{
"name": "logalize",
"version": "0.0.7",
"description": "A better window.console",
"keywords": [
"browser",
"colors",
"console",
"debug",
"devtools",
"developer",
"wrapper"
],
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "node bin/compileScss.js && webpack",
"prebuild:lib": "rimraf lib",
"build:lib": "babel src --out-dir lib",
"lint": "eslint src test/*.js",
"lint-staged": "lint-staged",
"spellcheck": "yaspeller-ci *.md",
"test": "yarn test:unit && yarn lint && yarn spellcheck",
"test:unit": "jest --coverage",
"test:watch": "yarn test:unit -- --watch"
},
"lint-staged": {
"*.js": "eslint",
"*.md": "yaspeller-ci"
},
"pre-commit": [
"lint-staged"
],
"author": "Alexander Komarov <ak@akxcv.com> (http://akxcv.com)",
"license": "MIT",
"repository": "akxcv/logalize",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.3.2",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-es5": "^1.0.1",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"jest": "^18.1.0",
"jest-cli": "^18.1.0",
"lint-staged": "^3.3.1",
"node-sass": "^4.5.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.0",
"uglifyjs": "^2.4.10",
"webpack": "^2.2.1",
"yaspeller-ci": "^0.3.0"
},
"jest": {
"collectCoverageFrom": [
"**/src/*.js",
"!**/src/app.js"
],
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"\\.css$": "<rootDir>/test/__mocks__/styleMock.js"
}
}
}