This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1.81 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
{
"name": "ai_challenge",
"version": "1.0.0",
"description": "a framework for fascilitating AI tournaments.",
"author": "Frank B Greco Jr <frankgreco@northwesternmutual.com>",
"scripts": {
"build": "concurrently -p \"[{name}]\" -n \"ALGORITHM,SIMULATOR,TOURNAMENT\" -c \"bgBlue.bold,bgGreen.bold,bgYellow.bold\" \"cd algorithmService && npm install\" \"cd simulatorService && npm install\" \"cd tournamentService && npm install\"",
"clean": "concurrently -p \"[{name}]\" -n \"ALGORITHM,SIMULATOR,TOURNAMENT\" -c \"bgBlue.bold,bgGreen.bold,bgYellow.bold\" \"cd algorithmService && rm -rf node_modules\" \"cd simulatorService && rm -rf node_modules\" \"cd tournamentService && rm -rf node_modules\"",
"dev": "concurrently -p \"[{name}]\" -n \"ALGORITHM,SIMULATOR,TOURNAMENT\" -c \"bgBlue.bold,bgGreen.bold,bgYellow.bold\" \"cd algorithmService && npm run dev\" \"cd simulatorService && npm run dev\" \"cd tournamentService && npm run dev\"",
"test": "cross-env NODE_ENV=testing ./node_modules/babel-cli/bin/babel-node.js ./node_modules/.bin/jasmine-node */spec",
"lint": "node ./node_modules/eslint/bin/eslint.js . --ext .js --color",
"coverage": "cross-env NODE_ENV=testing ./node_modules/babel-cli/bin/babel-node.js ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/jasmine-node */spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/northwesternmutual/ai-challenge"
},
"bugs": {
"url": "https://github.com/northwesternmutual/ai-challenge/issues"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-istanbul": "^0.11.0",
"concurrently": "^3.1.0",
"coveralls": "^2.11.14",
"cross-env": "^3.1.2",
"eslint": "^3.7.1",
"jasmine-node": "^2.0.0"
}
}