-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.27 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
{
"private": false,
"name": "time-hash",
"version": "2.0.1",
"description": "UTC/GMT Time Hash for milliseconds/timestamps",
"homepage": "https://github.com/disarticulate/time-hash/",
"repository": "disarticulate/time-hash",
"author": "LoreFolk <[email protected]> (https://www.lorefolk.com)",
"contributors": [
"Eric Xanderson <[email protected]>",
"Abe Usher <http://www.linkedin.com/in/socialnetworkanalysis>"
],
"license": "MIT",
"keywords": [
"efficient time",
"time hashing",
"timestamps",
"big data"
],
"engines": {
"node": ">=5.0"
},
"main": "src/index.js",
"jsnext:main": "src/index.js",
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base"
},
"dependencies": {
"decimal.js": "^7.2.3"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.14.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-trace": "^1.1.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"chai": "^4.0.0-canary.1",
"chai-properties": "^1.2.1",
"del": "^2.2.2",
"eslint": "^3.8.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^6.2.1",
"rollup": "^1.22.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"sinon": "^2.0.0-pre.3"
},
"scripts": {
"lint": "eslint src test tools",
"test": "mocha --require @babel/register test",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "rollup -c",
"prepublish": "npm run build",
"publish:docs": "easystatic deploy docs --repo disarticulate/time-hash",
"start": "easystatic start docs"
}
}