-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 KB
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
{
"name": "simone",
"version": "0.0.1",
"description": "Standardized Online Judge API",
"main": "lib/index.js",
"engines": {
"node": ">=8.9.1"
},
"scripts": {
"build": "babel src/ -d lib/ && flow-copy-source src lib",
"prepare": "npm run build",
"test": "npm run lint && npm run flow && npm run jest && npm run build && node lib",
"flow": "flow",
"jest": "jest",
"lint": "eslint ."
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maratonime/simone.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/maratonime/simone/issues"
},
"homepage": "https://github.com/maratonime/simone#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-prettier": "^3.0.0",
"flow-bin": "^0.82.0",
"flow-copy-source": "^2.0.2",
"jest": "^23.6.0",
"nock": "^10.0.0",
"prettier": "^1.14.3"
},
"dependencies": {
"jsdom": "^12.1.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
],
"testMatch": [
"**/tests/**/*.js?(x)"
]
}
}