forked from avg-plus/avg.engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 872 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
37
38
{
"name": "avg-engine",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json -w",
"prepublish": "cp ./package.json ./dist",
"test": "cp test/*.avs dist/test && node ./dist/test/app.js"
},
"version": "0.1.17",
"main": "./engine/index.js",
"author": {
"name": "AngryPowman",
"email": "powmanx2@gmail.com",
"url": "http://powman.org"
},
"license": "MIT",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/AngryPowman/avg.engine.git"
},
"dependencies": {
"@types/esprima": "^2.1.34",
"@types/node": "^8.0.24",
"esprima": "^4.0.0",
"image-size": "^0.6.1",
"node": "^8.2.1"
},
"devDependencies": {
"create-index": "^2.2.0",
"globby": "^6.1.0",
"gulp": "^3.9.1",
"shelljs": "^0.7.8",
"tslint": "^5.5.0"
}
}