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
/
package.json
64 lines (64 loc) · 1.77 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
{
"name": "@motss/utc-date",
"version": "1.2.0",
"description": "Generate JavaScript's UTC dates with various offsets",
"keywords": [
"date",
"date-offset",
"node",
"typescript",
"utc",
"utc-date"
],
"homepage": "https://github.com/motss/utc-date",
"repository": {
"type": "git",
"url": "[email protected]:motss/utc-date.git"
},
"license": "MIT",
"author": {
"name": "Rong Sen Ng",
"email": "[email protected]",
"url": "https://github.com/motss"
},
"files": [
"dist/*.d.ts",
"dist/*.*js"
],
"main": "dist/index",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && npm run rollup",
"build:test": "rm -rf dist/ && tsc -p ./tsconfig.test.json",
"lint": "tslint --project tsconfig.json --config tslint.prod.json --format stylish 'src/**/*.ts*'",
"lint:debug": "tslint --project tsconfig.json --config tslint.json --format stylish 'src/**/*.ts*'",
"prepublishOnly": "npm run lint && npm run build",
"rollup": "rollup -c ./rollup.config.js",
"test": "npm run build:test && jest --config ./.jestrc.json",
"ts": "rm -rf dist/ && tsc",
"watch": "npm run ts -- --watch"
},
"dependencies": {},
"devDependencies": {
"@messageflow/tslint-config": "^1.3.0",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.0",
"jest": "^24.7.1",
"rollup": "^1.9.0",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^4.2.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript2": "^0.20.1",
"tslint": "^5.15.0",
"typescript": "^3.4.2"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"publishConfig": {
"access": "public"
}
}