-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.14 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@jsy-lang/jsy",
"version": "0.10.7",
"description": "JSY offside syntax for ECMAScript/JS",
"author": "Shane Holloway <shane.holloway@ieee.org>",
"license": "BSD-2-Clause",
"keywords": [
"jsy",
"python",
"wisp",
"coffeescript",
"offside",
"indention",
"indent",
"syntax",
"transpile",
"transpiler"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jsy-lang/jsy.git"
},
"bugs": {
"url": "https://github.com/jsy-lang/jsy/issues"
},
"homepage": "https://github.com/jsy-lang/jsy#readme",
"bin": {
"jsy": "transpile.mjs",
"jsy-transpile": "transpile.mjs",
"jsy-scan": "scan.mjs"
},
"files": [
"esm",
"cjs",
"code",
"jsy-script.js",
"transpile.mjs",
"scan.mjs",
"unittest.html",
"test/__unittest.iife.js"
],
"type": "module",
"module": "esm/index.js",
"browser": "esm/index.js",
"exports": {
"./*": "./*",
".": "./esm/index.js"
},
"workspaces": [
"test/"
],
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-virtual": "^3.0.1",
"@rollup/pluginutils": "^5.0.4",
"micromatch": "^4.0.5",
"rollup": "^3.28.1",
"rollup-plugin-dgnotify": "^0.1.8",
"source-map": "^0.7.4",
"tiny-source-map": "^0.8.0"
},
"scripts": {
"clean": "rm -rf umd/ esm/ iife/",
"switch:jsy": "node ./pkg.switch.mjs && npm install && npm run build",
"switch:legacy": "node ./pkg.switch.mjs --legacy && npm install && npm run build",
"build": "rollup --config",
"build:stable": "rollup --config rollup.stable.js",
"watch:fast": "JSY_BUILD=fast npm -s run build -- --watch",
"watch": "npm -s run build -- --watch",
"pretest": "npm -s run build",
"test": "cd test; npm -s run test",
"test:install": "cd test; npm -s install",
"test:one": "cd test; npm -s run test:one",
"test:lean": "cd test; npm -s run test:lean",
"test:watch": "cd test; npm -s run test:watch",
"prepublishOnly": "npm -s run clean && npm -s run test"
}
}