-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "polling-timers",
"version": "1.0.1",
"description": "Javascript timer that negates the effects of OS hibernation and thread suspension",
"main": "./dist/es5/index.js",
"module": "./dist/es5module/index.js",
"typings": "./dist/dts/index.ts",
"scripts": {
"build": "rimraf ./dist && gulp",
"test": "jest --colors",
"prettier": "prettier --parser typescript --single-quote",
"prettier:check": "npm run prettier -l \"src/**/*.ts\"",
"prettier:write": "npm run prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpgorman/polling-timer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jpgorman/polling-timer/issues"
},
"homepage": "https://github.com/jpgorman/polling-timer#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-typescript": "^7.3.3",
"@types/babel__core": "^7.1.2",
"@types/jest": "^24.0.17",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0-beta.2",
"gulp-revert-path": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}