-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
88 lines (88 loc) · 2.5 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "nano-date",
"version": "4.1.0",
"description": "Date class that supports up to nano seconds",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build:types": "tsc --project ./ --declaration --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"cleanDir:build": "rimraf dist",
"cleanDir:docs": "rimraf dist-docs",
"transpile": "run-s build:types build:js",
"copy:public": "copy public dist-docs",
"typedoc": "typedoc --out dist-docs src --inlineSourceMap --mode modules --module system --excludePrivate --ignoreCompilerErrors",
"build": "run-s cleanDir:build transpile",
"test:types": "tsc --project ./ --noEmit",
"test:types:watch": "npm run test:types -- --watch",
"test:lint": "tslint --project tsconfig.json \"src/**/*.{ts,tsx}\"",
"test:unit": "jest --coverage",
"test": "run-s test:types test:lint test:unit",
"build:docs": "run-s cleanDir:docs typedoc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcgertig/nano-date.git"
},
"keywords": [
"nano",
"date",
"timestamp",
"nanoseconds",
"miliseconds",
"microseconds",
"time",
"year",
"day",
"month"
],
"author": "jcgertig <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcgertig/nano-date/issues"
},
"homepage": "https://github.com/jcgertig/nano-date#README",
"dependencies": {
"bignumber.js": "^9.0.0",
"memoizerific": "^1.11.2"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.16",
"chai": "^4.2.0",
"copy-dir-cli": "^0.0.3",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.11.0",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-semistandard": "^8.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"roots": [
"<rootDir>/src"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/lib/",
"<rootDir>/build/",
"<rootDir>/examples/"
]
}
}