This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.25 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
{
"name": "ripe-sputnik-manager-api",
"version": "0.2.2",
"description": "Simple Javascript based API client for RIPE Sputnik Manager",
"keywords": [
"api",
"client",
"js",
"ripe",
"sputnik",
"manager"
],
"homepage": "https://github.com/ripe-tech/ripe-sputnik-manager-api-js#readme",
"bugs": {
"url": "https://github.com/ripe-tech/ripe-sputnik-manager-api-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ripe-tech/ripe-sputnik-manager-api-js.git"
},
"license": "Apache-2.0",
"author": {
"name": "Platforme",
"url": "https://www.platforme.com"
},
"main": "dist/ripe-sputnik-manager.cjs.js",
"unpkg": "dist/ripe-sputnik-manager.umd.js",
"module": "dist/ripe-sputnik-manager.esm.js",
"browser": "dist/ripe-sputnik-manager.umd.js",
"files": [
"LICENSE",
"dist/**/*",
"res/**/*",
"js/**/*.js",
"test/**/*.js"
],
"scripts": {
"build": "rollup -c",
"example": "node examples/simple.js",
"lint": "eslint rollup.config.js \"./{js,test}/**/*.{js,json}\"",
"lint-fix": "eslint rollup.config.js \"./{js,test}/**/*.{js,json}\" --fix",
"prettier": "prettier rollup.config.js \"./*.{js,json}\" \"./{js,test}/**/*.{js,json}\" --write",
"pretty": "npm run prettier && npm run lint-fix",
"test": "mocha --recursive",
"upgrade": "npx sort-package-json && ncu -u",
"watch": "rollup -c -w"
},
"dependencies": {
"yonius": "^0.4.2"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"eslint": "^7.1.0",
"eslint-config-hive": "^0.3.3",
"mocha": "^7.2.0",
"mocha-cli": "^1.0.1",
"npm-check-updates": "^6.0.1",
"prettier": "^2.0.5",
"prettier-config-hive": "^0.1.7",
"rollup": "^2.13.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"sort-package-json": "^1.44.0"
}
}