-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "avocado",
"version": "1.0.0",
"description": "Vector Drawable & Animated Vector Drawable optimization tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"avdo": "./bin/avocado",
"avocado": "./bin/avocado"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/mocha --require ts-node/register ./test/**/*.spec.ts",
"test-cov": "./node_modules/.bin/nyc -e '.ts' -r text -r lcov npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/alexjlockwood/avocado"
},
"keywords": [
"Android",
"Vector Drawable",
"Animated Vector Drawable"
],
"author": "Alex Lockwood",
"license": "MIT",
"dependencies": {
"commander": "^2.13.0",
"sax": "^1.2.4",
"util.promisify": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.1",
"@types/mocha": "^2.2.46",
"@types/node": "^9.3.0",
"@types/sax": "^1.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"prettier": "1.10.2",
"should": "^13.2.1",
"ts-node": "^4.1.0",
"tslint": "^5.11.0",
"typescript": "^2.6.2"
},
"engines": {
"node": ">=6.12.0"
}
}