-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "canvas-tool",
"version": "0.2.1",
"description": "An extension to streamline some of Canvas' functionality.",
"main": "index.js",
"repository": "https://github.com/mobalt/canvas",
"author": "Moises Baltazar <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "prettier-eslint 'src/*.*' --list-different --write",
"build": "webpack",
"test": "mocha"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"html-webpack-plugin": "^3.2.0",
"mocha": "^6.1.4",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"write-file-webpack-plugin": "^4.5.1"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"overrides": [
{
"files": "*.test.js",
"options": {
"semi": true
}
},
{
"files": "*.{yml,yaml,json}",
"options": {
"tabWidth": 2
}
}
]
},
"dependencies": {
"axios": "^0.19.0",
"jquery": "^3.4.1",
"js-yaml": "^3.13.1",
"question-converter": "mobalt/question-converter"
}
}