-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.49 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
{
"name": "timestampy",
"version": "1.0.0",
"description": "Bunch of utilities useful when working with UNIX timestamps 🕒",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.esm.js",
"dist/index.d.ts"
],
"author": "Antoni Kepinski <a@kepinski.me> (https://kepinski.me)",
"bugs": {
"url": "https://github.com/xxczaki/timestampy/issues"
},
"scripts": {
"prebuild": "del-cli dist",
"esm": "tsc --module esnext && cpy dist/index.js dist --rename index.esm.js",
"cjs": "tsc --module commonjs",
"build": "npm run esm && npm run cjs",
"test": "npm run build && xo && ava",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=8"
},
"license": "MIT",
"repository": "xxczaki/timestampy",
"homepage": "https://github.com/xxczaki/timestampy",
"devDependencies": {
"@akepinski/tsconfig": "0.0.2",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"ava": "^2.2.0",
"browser-env": "^3.2.6",
"cpy-cli": "^2.0.0",
"del-cli": "^2.0.0",
"eslint-config-xo-typescript": "^0.15.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"xo": "*"
},
"sideEffects": false,
"ava": {
"babel": false,
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"xo": {
"extends": "xo-typescript",
"envs": [
"browser"
],
"extensions": [
"ts"
],
"rules": {
"ava/no-ignored-test-files": "off"
}
}
}