-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
61 lines (61 loc) · 1.88 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
{
"name": "tinymce-equation-plugin",
"version": "1.0.2",
"description": "Equation Editor plugin for TinyMCE that uses MathLive",
"scripts": {
"prepublishOnly": "npm run lint && npm run build",
"lint": "tslint src/**/*.ts",
"build": "grunt",
"test": "node_modules/@ephox/bedrock/bin/bedrock-auto.js --browser chrome -d src/test/ts/",
"test-manual": "node_modules/@ephox/bedrock/bin/bedrock.js -d src/test/ts/",
"unit": "mocha",
"start": "grunt webpack"
},
"keywords": [],
"author": "insoutt",
"devDependencies": {
"@ephox/agar": "latest",
"@ephox/bedrock": "latest",
"@ephox/mcagar": "latest",
"@ephox/swag": "latest",
"@ephox/tslint-rules": "latest",
"@types/mocha": "^7.0.2",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"grunt": "^1.0.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-shell": "^2.1.0",
"grunt-tslint": "^5.0.2",
"grunt-webpack": "^3.1.3",
"http-server": "^0.11.1",
"load-grunt-tasks": "^4.0.0",
"mocha": "^6.2.2",
"tinymce": "^5.6.0",
"ts-loader": "^5.3.0",
"ts-node": "^8.0.2",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"webpack": "^4.25.1",
"webpack-livereload-plugin": "^2.1.1"
},
"files": [
"lib/main",
"lib/demo",
"lib/test",
"src",
"tsconfig.json",
"readme.md",
"LEGAL.txt",
"CHANGELOG.txt",
"LICENSE.txt"
],
"main": "./lib/main/ts/api/Main.js",
"module": "./lib/main/ts/api/Main.js",
"types": "./lib/main/ts/api/Main.d.ts",
"license": "MIT",
"dependencies": {}
}