forked from Aaron-Sterling/time-ago-web-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "time-ago-web-component",
"version": "1.2.4",
"description": "Framework-independent Time Ago \"pipe.\" Web component that works with Ionic, Angular, React, Vue, vanilla Javascript, etc. Built with Stencil.js and date-fns.",
"main": "dist/time-ago.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/", "readme.md", "LICENSE"
],
"browser": "dist/time-ago.js",
"scripts": {
"build": "stencil build --prerender --es5",
"dev": "sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\" ",
"serve": "stencil-dev-server",
"start": "npm run dev",
"test": "jest --no-cache",
"test.watch": "jest --watch --no-cache"
},
"dependencies": {
"@stencil/core": "0.6.1",
"date-fns": "^1.29.0"
},
"devDependencies": {
"@stencil/dev-server": "latest",
"@stencil/utils": "latest",
"@types/jest": "^21.1.1",
"jest": "^21.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Aaron-Sterling/time-ago-web-component"
},
"author": "Aaron Sterling",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aaron-Sterling/time-ago-web-component/issues"
},
"homepage": "https://github.com/Aaron-Sterling/time-ago-web-component",
"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"
]
},
"keywords": [
"ago",
"angular",
"component",
"ember",
"ionic",
"pipe",
"stencil",
"time",
"time-ago",
"vue",
"web",
"web-component"
]
}