-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1016 Bytes
/
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
{
"name": "vanilla",
"private": true,
"version": "0.0.1-beta",
"description": "Web Components on force.com",
"scripts": {
"prepare": "yarn build",
"postinstall": "node bin/check-version.js",
"build": "lerna run build",
"clean": "lerna run clean && lerna clean --yes && rm -rf node_modules",
"lint": "lerna run lint && npm run lint:aura",
"lint:aura": "sfdx force:lightning:lint force-app --exit",
"test": "lerna run test",
"prettier": "prettier --write '**/*.js'",
"prettier:staged": "./bin/prettier-staged.js"
},
"author": "Kevin Hill, Kevin Venkiteswaran",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Gr8Gatsby/vanilla"
},
"engines": {
"node": ">= 8.9.4",
"npm": ">= 6.0.0"
},
"devDependencies": {
"eslint": "4.16.0",
"husky": "^0.15.0-rc.8",
"lerna": "2.9.0",
"prettier": "1.10.2",
"semver": "^5.5.0",
"shelljs": "^0.8.1"
},
"workspaces": [
"packages/*"
]
}