-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.73 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
{
"name": "express-inline-css-amp",
"version": "3.0.2",
"description": "Express inline css generator to AMP",
"main": "index.js",
"scripts": {
"prestart": "npm run -s build",
"build": "babel src -s -d lib",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eder/express-inline-css-amp.git"
},
"keywords": [
"inline",
"css",
"AMP",
"express",
"style",
"amp-custom"
],
"author": "Eder Eduardo",
"license": "MIT",
"bugs": {
"url": "https://github.com/eder/express-inline-css-amp/issues"
},
"homepage": "https://github.com/eder/express-inline-css-amp#readme",
"dependencies": {
"express": "^4.15.3",
"node-sass": "^4.5.3",
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0"
},
"devDependencies": {
"babel-jest": "^24.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"eslint": "^5.14.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-watch": "^4.0.2",
"jest": "^24.1.0",
"nodemon": "^1.11.0",
"regenerator-runtime": "^0.13.1",
"hbs": "~4.0.1"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"eslintConfig": {
"plugins": [
"import",
"jest"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"extends": [
"eslint:recommended"
]
}
}