-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
71 lines (71 loc) · 2.29 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "fatec-api",
"version": "1.5.0",
"description": "API for SIGA from Centro Paula Souza made for students to create things based in their profile data",
"keywords": [
"fatec",
"fatec-api",
"api",
"scrapper",
"siga",
"profile-data"
],
"homepage": "https://filipemeneses.gitbooks.io/fatec-api",
"repository": {
"type": "git",
"url": "https://github.com/filipemeneses/fatec-api.git"
},
"main": "dist/fatec-api.min.js",
"types": "types/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"test": "npm run test:base \"./tests/**/*.test.ts\"",
"test:base": "mocha --timeout 60000 --reporter spec -r ts-node/register -r tsconfig-paths/register",
"test:api": "npm run test:base 'tests/FatecApi.test.ts'",
"test:siga": "npm run test:base 'tests/Siga.test.ts'",
"test:cookie": "npm run test:base 'tests/Cookie.test.ts'",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"dev": "WEBPACK_ENV=dev webpack --progress --colors --watch",
"build": "rm -rf ./node_modules/@types/parsimmon && webpack -p --progress",
"changelog:major": "changelog -M",
"changelog:minor": "changelog -m",
"changelog:patch": "changelog -p"
},
"author": "Filipe Meneses <flcmeneses@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/chai": "4.0.8",
"@types/cheerio": "0.22.6",
"@types/mocha": "2.2.44",
"@types/node": "8.0.57",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-runtime": "6.26.0",
"chai": "4.1.2",
"dotenv": "4.0.0",
"dtslint": "0.2.0",
"mocha": "4.0.1",
"ts-loader": "3.2.0",
"ts-node": "3.3.0",
"tsconfig-paths": "2.6.0",
"tslint": "5.8.0",
"tslint-config-standard": "7.0.0",
"tslint-loader": "3.5.3",
"typescript": "2.6.2",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"webpack": "3.10.0",
"webpack-bundle-analyzer": "3.6.0",
"yargs": "10.0.3"
},
"dependencies": {
"cheerio": "1.0.0-rc.2",
"request": "2.83.0",
"request-promise-native": "1.0.5"
}
}