This repository has been archived by the owner on Jan 30, 2021. It is now read-only.
forked from LuccaSA/lucca-front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "lucca-front",
"version": "2.4.0",
"description": "a library of usefull components for web developpement",
"repository": {
"type": "git",
"url": "git+https://github.com/LuccaSA/lucca-front.git"
},
"keywords": [
"lucca",
"angular",
"ng",
"scss"
],
"author": "lucien bertin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LuccaSA/lucca-front/issues"
},
"private": true,
"scripts": {
"postinstall": "lerna bootstrap",
"clean": "lerna clean --yes",
"lerna": "lerna",
"travis": "lerna run travis --scope=@lucca-front/ng-internal",
"format": "npm run format-ng && npm run format-scss && npm run format-icons",
"format-ng": "prettier --config ./.prettierrc --write \"packages/ng/{src,demo}/**/*.{ts}\"",
"precommit": "lint-staged",
"build": "lerna run build",
"ls": "lerna ls -a -l"
},
"lint-staged": {
"gitDir": "./",
"linters": {
"packages/ng/{src,demo}/**/*.{ts}": [
"prettier --config ./.prettierrc --write",
"git add"
]
}
},
"dependencies": {
"lerna": "^3.10.0",
"surge": "^0.20.1",
"cryptiles": "^4.1.2",
"minimatch": "^3.0.2"
},
"devDependencies": {
"colors": "^1.1.2",
"glob": "^7.1.1",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"npm-run": "^5.0.1",
"prettier": "^1.5.3",
"yargs": "^7.1.0"
}
}