forked from summernote/summernote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.81 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
{
"name": "summernote",
"description": "Super simple WYSIWYG editor",
"version": "0.8.11",
"license": "MIT",
"keywords": [
"editor",
"WYSIWYG"
],
"repository": {
"type": "git",
"url": "https://github.com/summernote/summernote.git"
},
"author": {
"name": "hackerwins",
"email": "<[email protected]>"
},
"main": "dist/summernote.js",
"scripts": {
"build": "grunt build",
"coveralls": "grunt coveralls:travis",
"dist": "grunt dist",
"start": "grunt server",
"lint": "eslint src/js plugin lang test Gruntfile.js",
"download:selenium": "if [ ! -e test/libs/selenium-server-standalone.jar ]; then wget http://selenium-release.storage.googleapis.com/3.6/selenium-server-standalone-3.6.0.jar -O test/libs/selenium-server-standalone.jar; fi",
"test": "karma start karma.conf.js --single-run",
"test:travis": "grunt test-travis --verbose",
"test:saucelabs": "grunt saucelabs-test"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test",
"pre-push": "npm run lint && npm run test"
}
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"bootstrap": "^4.2.1",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"chromedriver": "^2.45.0",
"concurrently": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"fontforge": "^0.0.4",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "~4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-coveralls": "^2.0.0",
"grunt-eslint": "^21.0.0",
"grunt-exec": "^3.0.0",
"grunt-karma": "^3.0.1",
"grunt-recess": "^1.0.1",
"grunt-saucelabs": "^9.0.0",
"grunt-webfont": "^1.7.2",
"husky": "^1.2.1",
"jquery": "^3.3.1",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-opera-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "1.2.0",
"karma-typescript": "^3.0.13",
"karma-typescript-es6-transform": "^1.0.4",
"load-grunt-tasks": "^4.0.0",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.16",
"popper.js": "^1.14.6",
"rollup": "^0.68.1",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-typescript": "^1.0.0",
"serve-static": "^1.13.2",
"typescript": "^3.2.2"
}
}