This repository has been archived by the owner on Jun 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
{
"name": "@motss/utc-time",
"version": "0.1.0",
"description": "Generate JavaScript's UTC time with various offsets",
"keywords": [
"node",
"time",
"time-offset",
"typescript",
"utc",
"utc-time"
],
"homepage": "https://github.com/motss/utc-time",
"license": "MIT",
"author": {
"name": "Rong Sen Ng",
"email": "wes.ngrongsen@gmail.com",
"url": "https://github.com/motss"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git@github.com:motss/utc-time.git"
},
"scripts": {
"build": "npm run ts && cross-env NODE_ENV=production gulp build && npm run cleanup",
"build:debug": "npm run ts && gulp build && npm run cleanup",
"check": "npm run lint && npm run nsp",
"cleanup": "rm -rf gulpfile.js",
"gulp": "npm run ts && gulp",
"lint": "npm run ts && gulp lint && npm run cleanup",
"nsp": "nsp check",
"prepublishOnly": "npm run check && npm run build",
"test": "jest --config ./.jestrc.json",
"ts": "tsc --target esnext --lib esnext,esnext.asynciterable --module commonjs gulpfile.ts"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^22.1.3",
"@types/node": "^9.4.6",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.3.0",
"cross-env": "^5.1.3",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-sequence": "^1.0.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^3.2.4",
"jest": "^22.4.2",
"nsp": "^3.2.1",
"ts-jest": "^22.0.4",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.7.0",
"tslint-consistent-codestyle": "^1.11.0",
"tslint-immutable": "^4.5.1",
"typescript": "^2.7.2"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
}
}