-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "mfly-commands",
"version": "3.12.0",
"description": "mflyCommands.js for Mediafly Interactives",
"main": "src/mflyCommands.js",
"scripts": {
"release": "release-it",
"start": "extension-cli serve",
"clean": "rm -rf .temp src & mkdir src",
"compile": "tsc",
"browserify": "browserify .temp/mflyCommands.js --standalone mflyCommands | derequire > src/mflyCommands.js",
"prebuild": "npm run clean",
"build": "npm run compile && npm run browserify",
"watch": "npm run build & chokidar mflyCommands.ts commands/**/*.ts -c 'npm run build' --polling --poll-interval 100 --verbose"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mediafly/mflyCommands.git"
},
"author": {
"name": "Nachiket Mehta",
"email": "[email protected]",
"url": "https://github.com/mediafly"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/mediafly/mflyCommands/issues"
},
"homepage": "https://github.com/mediafly/mflyCommands#readme",
"keywords": [
"mflyCommands",
"Mediafly",
"Extensions"
],
"dependencies": {
"jquery": "3.5.0"
},
"devDependencies": {
"@types/jquery": "3.3.1",
"browserify": "16.0.0",
"browserify-shim": "3.8.14",
"chokidar-cli": "2.1.0",
"derequire": "2.0.6",
"release-it": "15.4.1",
"typescript": "4.2.4"
}
}