-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
36 lines (36 loc) · 988 Bytes
/
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
{
"name": "src2png",
"version": "0.0.0",
"main": "src/app.js",
"author": "Matt Lewis <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "poi dev",
"test": "mocha test test/unit/**/*_test.js",
"test-server": "mocha test --watch test/unit/**/*_test.js",
"test-integration": "test/integration/integration_test.sh",
"lint": "eslint --ext js,jsx ."
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^3.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^2.1.0",
"mocha": "^3.5.2"
},
"dependencies": {
"jimp": "^0.2.28",
"poi": "^9.3.5",
"prismjs": "^1.6.0",
"prismjs-components-loader": "^2.0.0",
"puppeteer": "^0.10.2",
"raw-loader": "^0.5.1",
"shelljs": "^0.7.8",
"vue": "^2.4.2"
}
}