-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.64 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.64 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
{
"name": "sitevision-scripts",
"version": "0.4.4",
"description": "Scripts for building and deploying SiteVision addons.",
"files": [
"config",
"lib",
"scripts",
"cli.js",
"babel.js"
],
"bin": "cli.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "github:strt/sitevision.git",
"author": "Alexander Nanberg <alexander.nanberg@strateg.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/strt/sitevision/issues"
},
"homepage": "https://github.com/strt/sitevision/packages/sitevision-scripts#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier-eslint --write",
"git add"
],
"*.{md,yaml,yml}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-object-set-prototype-of-to-assign": "^7.2.0",
"@babel/preset-env": "^7.1.0",
"arg": "^4.0.0",
"babel-plugin-macros": "^2.4.2",
"chalk": "^2.4.1",
"dotenv": "^7.0.0",
"execa": "^1.0.0",
"find-up": "^3.0.0",
"form-data": "^2.3.3",
"fs-extra": "^7.0.0",
"got": "^9.2.2",
"inquirer": "^6.2.0",
"rimraf": "^2.6.2",
"zip-dir": "^1.0.2"
},
"devDependencies": {
"eslint": "^5.7.0",
"eslint-config-strateg": "^1.1.1",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"prettier": "^1.14.3",
"prettier-eslint-cli": "^4.7.1"
}
}