-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1001 Bytes
/
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
{
"name": "ComilaJS",
"version": "0.3.0",
"description": "A lightweight Common Language Runtime for web applications",
"author": {
"name": "Danitso",
"url": "http://www.danitso.com/"
},
"dependencies": {
"extend": "3.0.1"
},
"devDependencies": {
"jscs": "3.0.7",
"jscs-loader": "0.3.0",
"jshint": "2.9.5",
"jshint-loader": "0.8.4",
"uglifyjs-webpack-plugin": "1.2.4",
"webpack": "4.4.1",
"webpack-cli": "2.0.13",
"webpack-dev-server": "3.1.1"
},
"homepage": "http://www.comilajs.org/",
"keywords": [
"cil",
"clr",
"dotnet",
"library",
"runtime"
],
"license": "LGPL-3.0",
"main": "src/Main.js",
"repository": {
"type": "git",
"url": "https://github.com/danitso/comilajs.git"
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"start": "webpack-dev-server --mode production",
"start:dev": "webpack-dev-server --mode development"
}
}