-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "facebook-crawling-nightmare",
"version": "1.0.0",
"description": "facebook-crawling-nightmare",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "npm run build && babel-node ./dist/main.js --presets es2015,stage-2 ",
"test": "mocha -r ts-node/register src/**/test.ts",
"singletest": "mocha -r ts-node/register"
},
"repository": "https://github.com/NikitaIT/facebook-crawling-nightmare.git",
"keywords": [
"nightmare",
"crawling",
"facebook",
"typescript"
],
"author": "GitHub",
"license": "MIT License",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/electron": "^1.6.10",
"@types/jasmine": "^2.5.53",
"@types/lodash": "^4.14.70",
"@types/mocha": "^5.2.5",
"@types/nightmare": "^2.10.4",
"@types/node": "^10.5.1",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"electron": "^2.0.2",
"mocha": "^5.2.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"typings": "^2.1.1"
},
"dependencies": {
"@types/bluebird": "^3.5.21",
"@types/react": "^16.4.6",
"automapper-ts": "^1.9.0",
"bluebird": "^3.5.1",
"lodash": "^4.17.10",
"log4js": "^2.10.0",
"moment": "^2.22.2",
"nightmare": "~3.0.1",
"user-agent-array": "^1.0.1"
},
"engines": {
"node": ">=4.0.0"
}
}