forked from c-w/mathquill4quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "mathquill4quill",
"license": "Apache-2.0",
"scripts": {
"release": "release-it",
"start": "reload --port 8080 --browser --dir .",
"lint.js": "eslint --ext js .",
"lint.prettier": "prettier --check \"**/*.js\"",
"lint": "run-s lint.js lint.prettier",
"prebuild": "mkdirp build",
"build.babel": "babel mathquill4quill.js > build/mathquill4quill.js",
"build.uglify": "uglifyjs --compress --mangle -- build/mathquill4quill.js > build/mathquill4quill.min.js",
"build": "run-s build.babel build.uglify",
"test": "concurrently --kill-others --success first \"serve -n -l 8000\" \"nightwatch -e chrome tests.js\""
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"chromedriver": "^78.0.0",
"concurrently": "^4.1.1",
"eslint": "^5.16.0",
"mkdirp": "^0.5.1",
"nightwatch": "^1.1.12",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"release-it": "^12.4.3",
"reload": "^3.0.1",
"serve": "^11.0.2",
"uglify-js": "^3.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/c-w/mathquill4quill"
},
"version": "1.0.0",
"files": [
"build/mathquill4quill.min.js",
"mathquill4quill.js"
],
"publishConfig": {
"access": "public"
}
}