-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
61 lines (61 loc) · 1.93 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
{
"name": "pictool",
"version": "0.4.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:prod && npm run build:mini",
"build:mini": "node_modules/.bin/rollup -c ./script/rollup.config.mini.js",
"build:prod": "node_modules/.bin/rollup -c ./script/rollup.config.prod.js",
"dev": "node_modules/.bin/rollup -w -c ./script/rollup.config.dev.js",
"lint": "./node_modules/.bin/eslint --fix --ext .ts ./src",
"precommit": "npm run lint",
"prepush": "npm run lint",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "./node_modules/.bin/mocha --exit ./__tests__/*.test.js",
"test:e2e": "./node_modules/.bin/mocha --exit ./__tests__/*.e2e.js",
"screenshot": "node ./__tests__/screenshot.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chenshenhai/pictool.git"
},
"author": "chenshenhai",
"license": "MIT",
"bugs": {
"url": "https://github.com/chenshenhai/pictool/issues"
},
"homepage": "https://github.com/chenshenhai/pictool#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-classes": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"eslint": "^5.16.0",
"husky": "^2.7.0",
"jimp": "^0.16.1",
"koa-compose": "^4.1.0",
"less": "^3.9.0",
"magic-string": "^0.25.3",
"mocha": "^6.2.3",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"puppeteer": "^7.1.0",
"rollup": "^1.15.6",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.2",
"serve-handler": "^6.1.3",
"tslib": "^1.10.0",
"typescript": "^3.5.2"
},
"files": [
"dist"
]
}