forked from naver/orbital.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "orbital.js",
"version": "0.1.4",
"description": "Plugin System for Webpack",
"main": "dist/orbital.js",
"scripts": {
"build": "npm run build:webpack",
"build:webpack": "rollup -c rollup/config.webpack.js",
"build:cjs": "rollup -c rollup/config.cjs.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"author": "Shim Heungwoon <hw.shim@navercorp.com>",
"maintainers": [
"Shim Heungwoon <hw.shim@navercorp.com>"
],
"contributors": [],
"devDependencies": {
"eslint": "^5.6.0",
"rollup": "^0.66.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-uglify": "^6.0.0",
"uglify-js": "^3.4.9"
},
"dependencies": {
"es6-shim": "^0.35.3",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.1",
"lodash.orderby": "^4.6.0",
"read-package-tree": "^5.2.1"
},
"orbital": {
"contributable": {
"services": [],
"extensions": []
},
"contributes": {
"services": [],
"extensions": []
}
},
"files": [
"dist",
"LICENSE",
"README.md"
]
}