-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.91 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
{
"name": "ripe-commons",
"version": "0.13.0",
"description": "The RIPE Commons library",
"keywords": [
"commons",
"js",
"ripe"
],
"homepage": "https://github.com/ripe-tech/ripe-comons-js#readme",
"bugs": {
"url": "https://github.com/ripe-tech/ripe-commons-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ripe-tech/ripe-commons-js.git"
},
"license": "Apache-2.0",
"author": {
"name": "Platforme",
"url": "https://www.platforme.com"
},
"main": "dist/ripe-commons.cjs.js",
"unpkg": "dist/ripe-commons.umd.js",
"module": "dist/ripe-commons.esm.js",
"browser": "dist/ripe-commons.umd.js",
"types": "types/index.d.ts",
"typings": "types/index.d.ts",
"files": [
"LICENSE",
"dist/**/*",
"res/**/*",
"js/**/*.js",
"test/**/*.js",
"types/**/*.d.ts"
],
"scripts": {
"build": "rollup -c",
"example": "node examples/simple.js",
"lint": "eslint rollup.config.js \"./{js,types,test}/**/*.{js,ts,json}\"",
"lint-fix": "eslint rollup.config.js \"./{js,types,test}/**/*.{js,ts,json}\" --fix",
"prettier": "prettier rollup.config.js \"./*.{js,ts,json}\" \"./{js,types,test}/**/*.{js,ts,json}\" --write",
"pretty": "npm run prettier && npm run lint-fix",
"test": "mocha --recursive",
"test-coverage": "nyc --reporter=lcov --reporter=text npm run test",
"upgrade": "npx sort-package-json && ncu -u",
"watch": "rollup -c -w"
},
"dependencies": {
"fastify-plugin": "^3.0.1",
"ripe-id-api": "^0.7.2",
"yonius": "^0.11.7"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-hive": "^0.5.8",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": ">=10.0.0 && <10.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.7.1",
"fastify": "^3.29.0",
"mocha": "^10.0.0",
"mocha-cli": "^1.0.1",
"npm-check-updates": "^13.0.3",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"prettier-config-hive": "^0.1.7",
"rollup": "^2.75.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"sort-package-json": "^1.57.0",
"typescript": "^4.7.2"
},
"engines": {
"node": ">=12"
}
}