forked from albert-gonzalez/easytimer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.91 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
74
75
76
77
78
79
80
81
82
83
{
"name": "easytimer.js",
"version": "4.5.3",
"description": "Timer/Chronometer/Countdown compatible with AMD and NodeJS",
"main": "dist/easytimer.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/albert-gonzalez/easytimer.js"
},
"directories": {
"test": "test",
"src": "src"
},
"scripts": {
"prestart": "npm install",
"start": "http-server -a 0.0.0.0 -p 8001",
"test": "mocha --exit",
"build": "rollup -c && rollup -c --environment optimize",
"build-examples": "rollup -c rollup.config.examples.js"
},
"keywords": [
"javascript",
"nodejs",
"amd",
"requirejs",
"timer",
"chronometer",
"countdown",
"mocha"
],
"author": "Albert Gonzalez",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"babel-plugin-prismjs": "^2.1.0",
"bootstrap": "^5.1.3",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"http-server": "~14.1.0",
"jquery": "^3.6.0",
"mocha": "^9.2.0",
"popper.js": "^1.16.1",
"prismjs": "^1.26.0",
"rollup": "^2.67.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-license": "^2.6.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^13.0.1"
},
"babel": {
"presets": [
[
"@babel/env",
{
"modules": false
}
]
],
"plugins": [
[
"prismjs",
{
"languages": [
"javascript",
"html"
],
"theme": "tomorrow",
"css": true
}
]
]
}
}