-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 4.1 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "modkit-loader",
"version": "0.0.9",
"description": "Runtime Module Loader",
"main": "dist/commonjs/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Jérémie Pichon <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/genesys/modkit-loader"
},
"bugs": {
"url": "https://github.com/genesys/modkit-loader/issues"
},
"keywords": [
"modkit",
"loader",
"modkit-loader",
"runtime",
"javascript",
"typescript",
"module",
"iife",
"amd",
"umd",
"esm",
"system",
"systemjs",
"requirejs",
"code-splitting"
],
"scripts": {
"install:all": "npm i && run-s install:docs install:modules",
"install:docs": "cd docs && npm i",
"install:modules": "run-s install:modules:umd install:modules:esm install:modules:system",
"install:modules:umd": "cd examples/umd && npm i",
"install:modules:esm": "cd examples/esm && npm i",
"install:modules:system": "cd examples/system && npm i",
"dev": "npm run build:lib && run-p dev:lib dev:docs dev:modules",
"dev:lib": "run-p dev:lib:tsc dev:lib:rollup",
"dev:lib:tsc": "tsc --watch --module commonjs",
"dev:lib:rollup": "rollup -c rollup.config.ts -w",
"dev:docs": "cd docs && npm run dev",
"dev:modules": "run-p dev:modules:none dev:modules:iife dev:modules:amd dev:modules:umd dev:modules:esm dev:modules:system",
"dev:modules:none": "cd examples/none && cpx \"**\" \"../../docs/static/modules/none\" --watch",
"dev:modules:iife": "cd examples/iife && cpx \"**\" \"../../docs/static/modules/iife\" --watch",
"dev:modules:amd": "cd examples/amd && cpx \"**\" \"../../docs/static/modules/amd\" --watch",
"dev:modules:umd": "cd examples/umd && npm run dev",
"dev:modules:esm": "cd examples/esm && npm run dev",
"dev:modules:system": "cd examples/system && npm run dev",
"lint": "run-s lint:lib lint:docs",
"lint:fix": "run-s lint:lib:fix lint:docs:fix",
"lint:lib": "eslint . --ext .ts",
"lint:docs": "cd docs && npm run lint",
"lint:lib:fix": "eslint . --ext .ts --fix",
"lint:docs:fix": "cd docs && npm run lint:fix",
"test": "run-s test:lib test:docs",
"test:lib": "jest",
"test:docs": "cd docs && npm run test",
"test:perf": "node test/perf/index.js",
"build": "run-s build:lib build:modules build:docs",
"build:lib": "rimraf dist && run-s build:lib:tsc build:lib:rollup",
"build:lib:tsc": "tsc --module commonjs",
"build:lib:rollup": "rollup -c rollup.config.ts",
"build:docs": "cd docs && npm run build",
"build:modules": "run-p build:modules:none build:modules:iife build:modules:amd build:modules:umd build:modules:esm build:modules:system",
"build:modules:none": "cd examples/none && cpx \"**\" \"../../docs/static/modules/none\"",
"build:modules:iife": "cd examples/iife && cpx \"**\" \"../../docs/static/modules/iife\"",
"build:modules:amd": "cd examples/amd && cpx \"**\" \"../../docs/static/modules/amd\"",
"build:modules:umd": "cd examples/umd && npm run build",
"build:modules:esm": "cd examples/esm && npm run build",
"build:modules:system": "cd examples/system && npm run build",
"serve": "cd docs && npm run serve"
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/semver": "6.0.2",
"@types/systemjs": "0.20.6",
"@types/uuid": "8.0.0",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"cpx": "1.5.0",
"eslint": "8.4.1",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0",
"rollup": "1.27.0",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-sourcemaps": "0.6.2",
"rollup-plugin-string": "3.0.0",
"rollup-plugin-typescript2": "0.30.0",
"ts-jest": "26.5.5",
"typescript": "4.6.4"
},
"dependencies": {
"axios": "1.7.7",
"bluebird": "3.5.5",
"es6-template-strings": "2.0.1",
"resolve-url": "0.2.1",
"semver": "6.3.1",
"systemjs": "5.0.0",
"uuid": "8.2.0"
}
}