forked from hartherbert/InstabotJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "instabot-js",
"version": "0.0.1",
"description": "Automated Instagram-bot written in TypeScript.",
"author": "Herbert Hart",
"repository": "https://github.com/hobbydevs/InstabotJS",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">= 8.9.0"
},
"dependencies": {
"lowdb": "^1.0.0",
"node-fetch": "^2.2.0",
"read-config": "^2.0.0",
"tslib": "~1.9.3"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/lowdb": "^1.0.5",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.26",
"@types/node-fetch": "^2.1.2",
"@types/sinon": "^5.0.2",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"prettier": "~1.14.2",
"rimraf": "~2.6.2",
"shelljs": "^0.8.2",
"sinon": "^6.3.4",
"ts-node": "^7.0.1",
"tslint": "~5.11.0",
"tslint-config-prettier": "1.14.0",
"tslint-microsoft-contrib": "~5.2.0",
"tsutils": "~3.0.0",
"typescript": "~3.0.1"
},
"scripts": {
"serve": "node build/src/main.js",
"release": "npm run copy-release-assets & npm run build",
"build:dev": "npm run copy-static-assets & npm run build",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"watch": "npm run copy-static-assets & tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"pretest": "npm run lint",
"precommit": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"copy-release-assets": "ts-node copyForRelease.ts"
}
}