-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.87 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.87 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
68
69
{
"name": "my-name",
"version": "0.0.1",
"description": "OLE - Homecredit international webcomponents kit",
"main": "dist/collection/index.js",
"types": "dist/collection/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": ["dist/"],
"browser": "dist/ole.js",
"scripts": {
"build": "stencil build",
"dev": "sd concurrent \"stencil build --dev --watch\" \"npm run serve\" ",
"serve": "stencil-dev-server --no-open",
"start": "npm run dev",
"test": "jest --no-cache",
"test.watch": "jest --watch --no-cache",
"precommit": "lint-staged",
"commitmsg": "validate-commit-msg",
"cz": "git-cz"
},
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 100,
"trailingComma": "es5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{tsx?,json,css,scss}": ["prettier --write", "git add"]
},
"dependencies": {
"@stencil/core": "0.0.7-0",
"bulma": "0.6.0"
},
"devDependencies": {
"@stencil/dev-server": "0.0.18-0",
"@stencil/utils": "0.0.4",
"@types/jest": "21.1.5",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"husky": "0.14.3",
"jest": "21.2.1",
"lint-staged": "4.3.0",
"prettier": "1.7.4",
"typescript": "2.6.1",
"validate-commit-msg": "2.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmbedITCZ/ole.git"
},
"author": "Ionic Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmbedITCZ/ole"
},
"homepage": "https://github.com/EmbedITCZ/ole",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "json", "jsx"]
}
}