-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.83 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
{
"name": "timer-creator",
"version": "1.1.1",
"description": "A library to easy manage intervals and timeouts",
"author": "José Diaz <contact@xisco.dev> (https://xisco.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/deepertech-com/timer-creator.git"
},
"keywords": [
"javascript",
"browser",
"interval",
"timeout",
"timer"
],
"engines": {
"node": ">= 6.8.0"
},
"main": "dist/main.js",
"scripts": {
"prebuild": "npm run clean",
"build": "webpack --config webpack.config.js",
"build:dev": "NODE_ENV=development npm run build",
"build:prod": "NODE_ENV=production npm run build",
"clean": "rimraf dist",
"postclean": "npm run test:cover",
"predocs": "npm run test:cover",
"docs": "documentation readme src/** --section=JSDOC",
"docs:watch": "npm run docs -- --watch",
"test": "npm run lint && jest --verbose --runInBand",
"test:watch": "npm run test -- --watch",
"test:watch-all": "npm run test -- --watchAll",
"test:cover": "npm run test -- --coverage",
"lint": "eslint --fix \"src/**/*.js\""
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-jest": "^26.6.3",
"documentation": "^12.3.0",
"eslint": "^7.21.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsdoc": "^31.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^26.6.3",
"jest-runner-eslint": "^0.10.0",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}