-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.01 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
{
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"name": "rollup-plugin-drupal-sdc-generator",
"author": {
"name": "the Exploratorium",
"email": "[email protected]",
"url": "https://www.exploratorium.edu"
},
"funding": [
{
"type": "individual",
"url": "https://www.exploratorium.edu/support/give"
},
{
"type": "individual",
"url": "https://www.exploratorium.edu/support/corporate-engagement"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Exploratorium/rollup-plugin-drupal-sdc-generator"
},
"bugs": {
"url": "https://github.com/Exploratorium/rollup-plugin-drupal-sdc-generator/issues"
},
"homepage": "https://github.com/Exploratorium/rollup-plugin-drupal-sdc-generator/issues#readme",
"keywords": [
"rollup",
"rollup-plugin",
"vite",
"vite-plugin",
"drupal"
],
"private": false,
"version": "1.0.28",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"type": "module",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"build:dev": "rollup -c --sourcemap",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier .",
"prettier:fix": "prettier --write .",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --config jest.config.cjs"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/pluginutils": "^5.1.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.13.0",
"jest": "^29.7.0",
"lefthook": "^1.8.2",
"prettier": "^3.4.2",
"rollup": "^4.28.1",
"rollup-plugin-copy": "^3.5.0"
}
}