This repository has been archived by the owner on Jul 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "@o-rango/orango-material-design",
"version": "0.0.2-beta",
"description": "Orango material design with stenciljs",
"main": "dist/orango-material-design.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"browser": "dist/orango-material-design.js",
"scripts": {
"publish": "npm publish --access=public",
"build": "stencil build",
"dev": "sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\" ",
"serve": "stencil-dev-server",
"start": "npm run dev",
"test": "NODE_ENV=test jest --no-cache --coverage",
"test.watch": "NODE_ENV=test jest --watch --no-cache"
},
"dependencies": {
"@stencil/core": "next",
"material-components-web": "^0.34.0"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.39",
"@stencil/dev-server": "latest",
"@stencil/utils": "latest",
"@types/jest": "22.1.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "22.2.0",
"babel-preset-es2015": "6.24.1",
"coveralls": "3.0.0",
"jest": "22.2.1",
"tslint": "5.9.1",
"tslint-react": "3.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/o-rango/orango-material-design.git"
},
"author": "Orango Team",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest",
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"transformIgnorePatterns": [
"/node_modules/(?!@material)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
},
"bugs": {
"url": "https://github.com/o-rango/orango-material-design/issues"
},
"homepage": "https://github.com/o-rango/orango-material-design#readme"
}