-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.28 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.28 KB
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
{
"name": "express-inline-css",
"version": "1.3.0",
"description": "Express inline CSS generator",
"license": "MIT",
"main": "index.js",
"author": {
"name": "Jordi López",
"email": "jlopezxs@gmail.com",
"url": "http://jlopezxs.github.io"
},
"files": [
"src",
"dist",
"index.js"
],
"scripts": {
"example": "npm run build && node example/index",
"lint": "eslint src/",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"build": "rm -rf dist && babel src -d dist --source-maps",
"cm": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"precommit": "lint-staged",
"init": "semantic-release-cli setup"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"lint-staged": {
"{src}/**/*.js": [
"prettier --write --no-semi --single-quote",
"git add"
]
},
"dependencies": {
"critical": "^1.1.1",
"lodash.flatten": "^4.4.0",
"lodash.uniq": "^4.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.3",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"semantic-release": "^15.1.2",
"semantic-release-cli": "^3.6.4",
"swig": "^1.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlopezxs/express-inline-css.git"
},
"bugs": {
"url": "https://github.com/jlopezxs/express-inline-css/issues"
},
"keywords": [
"inline",
"css",
"critical",
"express"
],
"babel": {
"presets": [
"env"
]
}
}