-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·47 lines (47 loc) · 2.32 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
{
"name": "gia",
"version": "1.0.1",
"description": "Minimalistic JavaScript framework for server rendered websites.",
"main": "dist/gia.js",
"private": false,
"scripts": {
"compile-component": "babel --presets es2015,stage-0 src/Component.js --out-file Component.js",
"compile-base-component": "babel --presets es2015,stage-0 src/BaseComponent.js --out-file BaseComponent.js",
"compile-get-component-from-element": "babel --presets es2015,stage-0 src/getComponentFromElement.js --out-file getComponentFromElement.js",
"compile-load-components": "babel --presets es2015,stage-0 src/loadComponents.js --out-file loadComponents.js",
"compile-create-instance": "babel --presets es2015,stage-0 src/createInstance.js --out-file createInstance.js",
"compile-remove-components": "babel --presets es2015,stage-0 src/removeComponents.js --out-file removeComponents.js",
"compile-destroy-instance": "babel --presets es2015,stage-0 src/destroyInstance.js --out-file destroyInstance.js",
"compile-utils": "babel --presets es2015,stage-0 src/utils.js --out-file utils.js",
"compile-eventbus": "babel --presets es2015,stage-0 src/eventbus.js --out-file eventbus.js",
"compile-config": "babel --presets es2015,stage-0 src/config.js --out-file config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "npm run compile-component && npm run compile-base-component && npm run compile-get-component-from-element && npm run compile-load-components && npm run compile-create-instance && npm run compile-remove-components && npm run compile-destroy-instance && npm run compile-utils && npm run compile-eventbus && npm run compile-config",
"build": "webpack-cli",
"prepublish": "npm run compile && npm run build"
},
"author": "Georgy Marchuk",
"contributors": [
"Daniel Cirmaciu",
"Georgy Marchuk"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/giantcz/gia"
},
"keywords": [],
"dependencies": {
"babel-regenerator-runtime": "^6.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
}
}