forked from irislib/iris-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.3 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "iris-lib",
"version": "0.0.104",
"description": "Basic tools for reading and writing Iris messages and identities.",
"main": "cjs/index.js",
"browser": "dist/irisLib.js",
"module": "es/index.js",
"jsxnext:main": "es/index.js",
"jest": {
"testURL": "http://localhost/",
"bail": true,
"verbose": true,
"collectCoverage": true,
"reporters": [
"default",
[
"./node_modules/jest-html-reporter",
{
"pageTitle": "Test Report",
"includeFailureMsg": true,
"includeConsoleLog": true
}
],
"jest-stare"
]
},
"files": [
"dist",
"cjs",
"es",
"src"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"release": "release-it",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint src/*.js",
"lint:flow": "flow --color always",
"test": "clear && jest",
"test:coverage": "jest --coverage ",
"test:watch": "clear && jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"lint:test": "npm run lint && npm run test:coverage",
"build": "clear && npm run build:cjs && npm run lint:test && npm run build:es && npm run build:umd && npm run build:docs",
"build:watch": "clear && rimraf cjs && cross-env BABEL_ENV=cjs babel -w src --out-dir cjs",
"build:es": "rimraf es && cross-env BABEL_ENV=es babel src --out-dir es",
"build:cjs": "rimraf cjs && cross-env BABEL_ENV=cjs babel src --out-dir cjs",
"build:umd": "rimraf dist && cross-env BABEL_ENV=es rollup -c & cross-env BABEL_ENV=es NODE_ENV=production rollup -c",
"build:docs": "documentation build src/** -f html -o docs"
},
"keywords": [],
"author": "Martti Malmi ([email protected])",
"license": "MIT",
"repository": "irislib/iris-lib",
"devDependencies": {
"@babel/core": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"documentation": "^9.1.1",
"eslint": "^5.4.0",
"eslint-config-devine": "^1.8.1",
"eslint-plugin-babel": "^5.1.0",
"flow-bin": "^0.79.1",
"jest": "^23.5.0",
"jest-html-reporter": "^2.5.0",
"jest-stare": "^1.16.0",
"jquery": "^3.4.1",
"libp2p-connection-manager": "0.0.2",
"release-it": "^7.6.0",
"rimraf": "^2.6.2",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-hypothetical": "^2.1.0",
"rollup-plugin-ignore": "^1.0.4",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^1.0.1"
},
"dependencies": {
"@trust/webcrypto": "^0.9.2",
"create-hash": "^1.2.0",
"gun": "^0.2019.413",
"identicon.js": "^2.3.3",
"node-webcrypto-ossl": "^1.0.39",
"text-encoding": "^0.7.0"
}
}