-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 KB
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
{
"name": "rollup-plugin-atomic",
"main": "dist/main.js",
"version": "1.1.0",
"author": "Amin Yahyaabadi",
"description": "Rollup plugin used in atom-ide-community",
"keywords": [
"rollup",
"plugin",
"atomic"
],
"repository": "https://github.com/atom-ide-community/rollup-plugin-atomic",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"tsc": "tsc -p src/tsconfig.json || echo done",
"build": "npm run tsc",
"prepare": "npm run build",
"bump": "ncu -u -x coffeescript"
},
"dependencies": {
"tslib": "^2.0.0",
"@rollup/plugin-commonjs": "14.0.0",
"@rollup/plugin-node-resolve": "8.4.0",
"@rollup/plugin-typescript": "5.0.2",
"@rollup/plugin-babel": "^5.1.0",
"rollup-plugin-coffee-script": "2.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-wasm": "^5.0.0",
"rollup-plugin-terser": "6.1.0",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-execute": "^1.1.1",
"@ampproject/rollup-plugin-closure-compiler": "0.26.0",
"csso-cli": "^3.0.0",
"array-includes-any": "^2.7.3"
},
"peerDependencies": {
"rollup": "2.23.0",
"typescript": "^3.9.7",
"coffeescript": "^1.12.7",
"@babel/core": "^7.11.0"
},
"devDependencies": {
"typescript": "^3.9.7",
"rollup": "2.23.0",
"prettier": "^2.0.5",
"npm-check-updates": "7.0.2"
}
}