-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.33 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
{
"name": "rollup-plugin-archieml",
"type": "module",
"version": "1.2.1",
"publishConfig": {
"access": "public"
},
"description": "Import ArchieML files using Rollup",
"keywords": [
"archieml",
"rollup"
],
"license": "MIT",
"repository": "plmrry/rollup-plugin-archieml",
"author": "Paul Murray",
"homepage": "https://github.com/plmrry/rollup-plugin-archieml#readme",
"bugs": "https://github.com/plmrry/rollup-plugin-archieml/issues",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "npx tsc && rollup -c",
"prepare": "rm -rf dist && npm run build",
"pretest": "npm run prepare",
"release": "npm publish",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"archieml": "0.5.0",
"@rollup/pluginutils": "latest"
},
"devDependencies": {
"@types/estree": "latest",
"@types/node": "latest",
"jest": "latest",
"rollup": "latest",
"typescript": "latest",
"vite": "latest"
},
"types": "./dist/index.d.ts",
"jest": {
"transform": {},
"automock": false,
"clearMocks": true,
"verbose": true
}
}