forked from microsoft/roosterjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 3.04 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
{
"name": "roosterjs",
"version": "7.16.0",
"description": "Framework-independent javascript editor",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/roosterjs"
},
"license": "MIT",
"scripts": {
"clean": "node tools/build.js clean",
"dts": "node tools/build.js dts",
"tslint": "node tools/build.js tslint",
"normalize": "node tools/build.js normalize",
"pack": "node tools/build.js pack",
"pack:prod": "node tools/build.js packprod",
"b": "node tools/build.js clean normalize buildcommonjs",
"builddemo": "node tools/build.js builddemo",
"builddoc": "node tools/build.js builddoc",
"build": "node tools/build.js clean normalize tslint buildcommonjs dts pack:prod builddemo",
"build:ci": "node tools/build.js clean normalize tslint buildcommonjs buildamd dts pack packprod builddemo builddoc",
"start": "webpack-dev-server",
"test": "karma start",
"test:debug": "karma start --no-single-run",
"publish": "node tools/build.js clean normalize tslint buildcommonjs buildamd dts pack packprod builddemo publish",
"publish:dark": "node tools/build.js clean normalize tslint buildcommonjs buildamd dts pack packprod builddemo publishdark",
"instrumentation": "cd publish/samplesite/instrumentation-tests && npm run instrumentation",
"instrumentation:chrome": "cd publish/samplesite/instrumentation-tests && npm run instrumentation:chrome",
"instrumentation:firefox": "cd publish/samplesite/instrumentation-tests && npm run instrumentation:firefox"
},
"devDependencies": {
"@types/jasmine": "3.5.10",
"@types/dom-inputevent": "1.0.5",
"glob": "7.1.6",
"husky": "^4.2.5",
"jasmine-core": "3.5.0",
"karma": "5.0.4",
"karma-firefox-launcher": "1.3.0",
"karma-jasmine": "3.1.1",
"karma-phantomjs-launcher": "1.0.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "4.0.2",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"progress": "2.0.3",
"rimraf": "3.0.2",
"toposort": "2.0.2",
"ts-loader": "7.0.2",
"tslint": "6.1.2",
"tslint-eslint-rules": "5.4.0",
"tslint-microsoft-contrib": "6.2.0",
"typedoc": "0.17.6",
"typedoc-plugin-exclude-references": "1.0.0",
"typedoc-plugin-external-module-map": "1.2.1",
"typescript": "3.8.3",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"@microsoft/loader-load-themed-styles": "1.8.11",
"@types/node": "13.13.4",
"@types/object-assign": "4.0.30",
"@types/react-dom": "16.9.7",
"css-loader": "3.5.3",
"node-sass": "4.14.0",
"sass-loader": "8.0.2",
"url-loader": "4.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}