forked from brunoroots/static-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1006 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1006 Bytes
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
{
"name": "static-generator",
"version": "1.0.0",
"description": "Directus extension for the static website generator",
"main": "main.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/directus/extension-static-generator.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/directus/extension-static-generator/issues"
},
"homepage": "https://github.com/directus/extension-static-generator#readme",
"dependencies": {
"ace-builds": "^1.2.8"
},
"devDependencies": {
"xo": "^0.18.2"
},
"xo": {
"envs": [
"amd",
"browser"
],
"ignores": [
"assets",
"vendor"
],
"space": true,
"esnext": false,
"rules": {
"import/no-amd": 0,
"camelcase": 0,
"capitalized-comments": 0,
"import/no-extraneous-dependencies": 0
}
}
}