-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.12 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
{
"name": "xexeu-view",
"version": "0.1.0",
"description": "A view library built for learning purposes. implements the Observer design pattern.",
"main": "dist/xexeu-view.min.js",
"module": "dist/xexeu-view.es.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rollup": "node_modules/rollup/bin/rollup",
"dist": "npm run rollup -- --config rollup.config.js",
"dev": "npm run rollup -- --config rollup.dev.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhonnymichel/Xexeu-View.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jhonnymichel/Xexeu-View/issues"
},
"homepage": "https://github.com/jhonnymichel/Xexeu-View#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify-es": "0.0.1"
},
"dependencies": {
"rollup-plugin-sourcemaps": "^0.4.2"
}
}