-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.22 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
{
"name": "c",
"version": "2.0.0",
"description": "JavaScript library for drawing figures and animation.",
"main": "src/c.js",
"type": "module",
"scripts": {
"test": "node test/index.js",
"fmt": "prettier . --write",
"fmt-src": "prettier src/**/* --write",
"build": "npx grunt && npm run gcc-main && npm run gcc-core",
"gcc-main": "npx google-closure-compiler --entry_point \"./src/app.js\" --js_output_file \"./dist/c.gcc.js\" --flagfile gcc.conf ",
"gcc-core": "npx google-closure-compiler --entry_point \"./src/core.js\" --js_output_file \"./dist/c.core.gcc.js\" --flagfile gcc.conf ",
"gcc-custom": "npx google-closure-compiler --flagfile gcc-custom.conf",
"all": "npm run fmt && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Roopesh2/C.git"
},
"author": "Roopesh",
"license": "MIT",
"bugs": {
"url": "https://github.com/Roopesh2/C/issues"
},
"homepage": "https://github.com/Roopesh2/C#readme",
"devDependencies": {
"docdash": "^2.0.1",
"esmify": "^2.1.1",
"google-closure-compiler": "^20211107.0.0",
"grunt": "^1.6.1",
"grunt-browserify": "^6.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-jsdoc": "^2.4.1",
"jsdoc": "^4.0.2",
"prettier": "^3.0.0"
}
}