-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.36 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
{
"name": "muncher",
"version": "0.0.13",
"description": "Generate sprite sheets from the command line",
"files": [
"dist/"
],
"directories": {
"example": "example"
},
"scripts": {
"clean": "rm -f muncher.tgz",
"build-test": "yarn clean && yarn build && yarn pack --filename muncher.tgz && cd example && yarn refresh && yarn munch && cd -",
"release": "yarn clean && yarn build && yarn audit && np",
"build": "rm -rf dist && parcel build ./src/index.js --target node --no-cache",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sajmoni/muncher.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bin": "dist/index.js",
"prettier": {
"trailingComma": "all",
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "yarn clean && lint-staged",
"pre-push": "yarn test"
}
},
"engines": {
"node": ">=11.0.0"
},
"dependencies": {
"chalk": "3.0.0",
"fs-extra": "9.0.0",
"tmp": "0.1.0",
"yargs": "15.3.1"
},
"devDependencies": {
"ava": "3.5.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"husky": "4.2.3",
"lint-staged": "10.0.8",
"np": "6.2.0",
"parcel-bundler": "1.12.4",
"parcel-plugin-shebang": "1.2.8",
"prettier": "2.0.1",
"typescript": "3.8.3"
}
}