-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.29 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
{
"name": "script4j",
"version": "0.1.0",
"description": "Script4J is a set of libraries that allows to write programs and libraries in TypeScript/JavaScript using Java API",
"author": "Pavel Kastornyy <pavelkastornyy@gmail.com>",
"license": "GNU General Public License, version 2, with the Classpath Exception",
"workspaces": [
"modules/*"
],
"devDependencies": {
"gulp": "4.0.0",
"@babel/core": "7.2.2",
"@babel/register": "7.0.0",
"@babel/preset-env": "7.3.1",
"@babel/cli": "7.2.3",
"typescript": "3.3.3",
"jsonlint": "1.6.3",
"rimraf": "2.6.3"
},
"dependencies": {
"gulp": "4.0.0"
},
"modules": [
"script4j.base",
"script4jfx.jquery",
"script4jfx.base",
"script4jfx.graphics",
"script4jfx.controls",
"script4jfx.loader",
"script4jfx.demo"
],
"scripts": {
"install-all": "npm install && npx jsonlint -i package.json -t ' ' && npx gulp install-modules",
"uninstall-all": "npx gulp uninstall-all",
"reinstall-all": "npm run uninstall-all && npm run install-all",
"build-all": "npx gulp build-modules",
"clean-all": "npx gulp clean-all",
"test-all": "npx gulp test-modules"
}
}