-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
67
68
69
70
71
72
73
{
"name": "@naturacosmeticos/natds-commons",
"version": "0.0.0",
"description": "A monorepo containing Natura Design System multiplataform packages",
"main": "index.js",
"private": true,
"scripts": {
"build": "lerna run build",
"commit": "git cz",
"lint": "lerna run lint",
"prerelease": "lerna version --conventional-commits --conventional-prerelease",
"release": "lerna version --conventional-commits",
"start": "lerna run start --stream",
"test": "lerna run test",
"test:watch": "jest --watch --collectCoverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natura-cosmeticos/natds-commons.git"
},
"keywords": [
"commons",
"natds",
"tokens",
"themes",
"icons"
],
"author": "Natura Cosméticos <designsystem@natura.net>",
"contributors": [
"Ariel Flor <arielwb@gmail.com>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/natura-cosmeticos/natds-commons/issues"
},
"homepage": "https://github.com/natura-cosmeticos/natds-commons#readme",
"devDependencies": {
"@babel/core": "7.10.4",
"@babel/node": "7.10.4",
"@babel/preset-env": "7.10.4",
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"@naturacosmeticos/eslint-config-natura": "2.0.2",
"babel-eslint": "10.1.0",
"commitizen": "4.1.2",
"core-js": "3.6.5",
"cz-lerna-changelog": "2.0.3",
"eslint": "7.5.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-mocha": "7.0.1",
"handlebars": "4.7.6",
"http-server": "0.12.3",
"husky": "4.2.5",
"jest": "26.1.0",
"jest-file-snapshot": "0.3.8",
"lerna": "3.22.1",
"nodemon": "2.0.4",
"style-dictionary": "2.10.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"workspaces": [
"packages/natds-themes"
]
}