forked from medfreeman/nuxt-netlify-cms-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "nuxt-netlify-cms",
"description": "Easy Netlify CMS integration with nuxt.js",
"version": "2.0.1",
"license": "MIT",
"main": "index.js",
"author": "Mehdi Lahlou <[email protected]>",
"repository": "https://github.com/medfreeman/nuxt-netlify-cms-module.git",
"scripts": {
"#<git hooks>": "handled by husky",
"precommit": "lint-staged",
"#</git hooks>": "handled by husky",
"lint": "eslint --ignore-path .gitignore --fix \"**/*.js\"",
"test": "cross-env NODE_ENV=test DEBUG=nuxt:netlify-cms jest --runInBand --forceExit",
"pretest": "yarn lint",
"build": "babel --ignore /__tests__/,/__mocks__/ -d ./dist ./src",
"watch": "babel -w --ignore /__tests__/,/__mocks__/ -d ./dist ./src",
"release": "standard-version; git push --follow-tags",
"prepare": "yarn build"
},
"files": [
"lib",
"dist"
],
"dependencies": {
"js-yaml": "^3.10.0",
"needlepoint": "^1.0.5",
"style-loader": "^0.19.0"
},
"peerDependencies": {
"netlify-cms": ">=0.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"codecov": "^3.0.0",
"cross-env": "^5.0.5",
"eslint": "^4.7.1",
"eslint-config-i-am-meticulous": "^7.0.1",
"eslint-config-prettier": "^2.5.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.1.0",
"git-exec-and-restage": "^1.0.1",
"husky": "^0.14.3",
"jest": "^22.0.4",
"koa": "^2.3.0",
"koa-static": "^4.0.1",
"lint-staged": "^6.0.0",
"netlify-cms": "1.0.3",
"nuxt": "^1.0.0-rc11",
"prettier": "^1.7.0",
"request-promise-native": "^1.0.4",
"standard-version": "^4.2.0"
},
"lint-staged": {
"*.js": [
"git-exec-and-restage prettier --write --"
]
},
"babel": {
"presets": "babel-preset-env",
"plugins": [
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
],
"transform-decorators-legacy"
],
"env": {
"test": {
"sourceMaps": "both"
}
}
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"mapCoverage": true,
"collectCoverage": true
},
"eslintConfig": {
"root": true,
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true,
"jest": true
},
"plugins": [
"babel",
"jest"
],
"extends": [
"eslint-config-i-am-meticulous",
"plugin:jest/recommended",
"eslint-config-prettier"
],
"rules": {
"import/max-dependencies": [
2,
{
"max": 20
}
]
},
"globals": {
"jest/globals": true,
"jasmine": true
}
},
"prettier": {
"printWidth": 80,
"parser": "babylon"
}
}