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
71 lines (71 loc) · 2.34 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
{
"name": "ripe-blender-api",
"version": "0.2.0",
"description": "The RIPE Blender API client",
"keywords": [
"api",
"client",
"ripe",
"blender",
"js"
],
"homepage": "https://github.com/ripe-tech/ripe-blender-api-js#readme",
"bugs": {
"url": "https://github.com/ripe-tech/ripe-blender-api-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ripe-tech/ripe-blender-api-js.git"
},
"license": "Apache-2.0",
"author": {
"name": "Platforme",
"url": "https://www.platforme.com"
},
"main": "dist/ripe-blender-api.cjs.js",
"unpkg": "dist/ripe-blender-api.umd.js",
"module": "dist/ripe-blender-api.esm.js",
"browser": "dist/ripe-blender-api.umd.js",
"files": [
"LICENSE",
"dist/**/*",
"res/**/*",
"js/**/*.js",
"test/**/*.js"
],
"scripts": {
"build": "rollup -c",
"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.11.5"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.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",
"mocha": "^10.0.0",
"mocha-cli": "^1.0.1",
"npm-check-updates": "^12.5.11",
"prettier": "^2.6.2",
"prettier-config-hive": "^0.1.7",
"rollup": "^2.71.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"sort-package-json": "^1.57.0"
}
}