forked from godaddy/gasket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.98 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
{
"name": "@gasket/repository",
"version": "0.0.0",
"description": "Robust, pluggable, & render agnostic framework for rapid deliver modern web applications.",
"scripts": {
"lint": "eslint scripts",
"lint:fix": "npm run lint -- --fix",
"lint:fix:all": "npm run lint:fix && lerna run lint:fix --concurrency=1 --stream",
"test:package": "lerna run test --stream --scope $*",
"test": "lerna run test --concurrency=1 --stream",
"test:coverage": "lerna run test:coverage --concurrency=1 --stream",
"posttest": "npm run lint",
"build": "lerna run build",
"align-packages": "node ./scripts/align-packages",
"bootstrap": "lerna bootstrap --hoist",
"clean": "npm run clean:artifacts && npm run clean:packages && npm run clean:root",
"clean:artifacts": "lerna run clean --parallel",
"clean:packages": "lerna clean --yes",
"clean:root": "rimraf node_modules",
"docs": "lerna run docs && npm run generate-docs-index",
"docs-view": "docsify serve",
"generate-docs-index": "node scripts/generate-docs-index",
"postinstall": "npm run bootstrap",
"publish:canary": "lerna publish --preid canary --dist-tag canary"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/godaddy/gasket.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"gasket",
"oclif",
"framework",
"pwa",
"ssr",
"plugins"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/godaddy/gasket/issues"
},
"homepage": "https://github.com/godaddy/gasket#readme",
"devDependencies": {
"docsify-cli": "^4.4.2",
"eslint": "^7.17.0",
"eslint-config-godaddy": "^4.0.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-mocha": "^8.0.0",
"jsdom": "^16.4.0",
"lerna": "^4.0.0",
"rimraf": "^3.0.2"
},
"eslintConfig": {
"extends": [
"godaddy"
],
"ignorePatterns": [
"node_modules/"
]
},
"private": true
}