forked from objectivehtml/FlipClock
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.54 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.54 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@webkinder/flipclock",
"version": "1.0.0",
"email": "support@webkinder.ch",
"author": "Objective HTML, LLC <justin@justin.com>",
"contributors": [
"Objective HTML, LLC <support@objectivehtml.com>",
"Brian Espinosa <b@bje.co>"
],
"description": "A not fully featured countdown clock.",
"license": "MIT",
"main": "dist/flipclock.js",
"homepage": "http://flipclockjs.com/",
"repository": {
"type": "git",
"url": "https://github.com/webkinder/FlipClock"
},
"bugs": {
"url": "https://github.com/objectivehtml/FlipClock/issues"
},
"keywords": [
"clock",
"countdown",
"time",
"javascript",
"html",
"css",
"sass",
"scss"
],
"languages": [
"Arabic",
"Czech",
"English",
"Spanish"
],
"dependencies": {
"jsdocs": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.24.1",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jsdoc": "^3.5.5",
"jsdoc-export-default-interop": "^0.3.1",
"jsdom": "^11.7.0",
"node-sass": "^4.12.0",
"parse5": "^2.2.3",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-browsersync": "^0.2.6",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-conditional": "^1.1.1",
"rollup-plugin-eslint": "^5.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.3",
"rollup-plugin-progress": "^0.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-root-import": "^0.2.4",
"rollup-plugin-sass": "^0.9.3",
"rollup-plugin-scss": "^0.4.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify-es": "0.0.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"commit": "git add -A && git commit -m $npm_package_version;",
"release-patch": "npm run release; npm version patch; npm run docs; npm run commit; npm publish;",
"release-minor": "npm run release; npm version minor; npm run docs; npm run commit; npm publish;",
"release-major": "npm run release; npm version major; npm run docs; npm run commit; npm publish;",
"release": "npm run build; npm run uglify;",
"uglify": "rollup -c rollup.uglify.js",
"docs": "rm -r ./public; ./node_modules/.bin/jsdoc -r -c jsdoc.config.js -u ./docs -t ./.jsdoc/flipclock -R ./README.md",
"prepare": "npm run build"
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"json"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"moduleDirectories": [
"node_modules"
]
}
}