forked from DanielGarciaMandillo/angular-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 699 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 699 Bytes
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
{
"scripts": {
"download": "npm install && cd app && npm install",
"start": "gulp build && cd build && npm start",
"full": "gulp buildFull && cd build && npm start"
},
"dependencies": {
"asar": "^0.7.2",
"fs-jetpack": "^0.7.0",
"gulp-shell": "^0.5.2",
"gulp-util": "^3.0.6",
"maven": "^3.0.6",
"q": "^1.4.1",
"ts-java": "^1.4.0",
"yargs": "^3.15.0"
},
"tsjava": {
"tsJavaModulePath": "./app/java/tsJavaModule.ts",
"javaTypingsPath": "../typings/browser.d.ts",
"classpath": [
"app/bin/*.jar"
],
"packages": [
"com.todo.**"
],
"classes": [
"java.util.ArrayList",
"java.lang.Boolean"
]
}
}