-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "@lux-ai/2021-challenge",
"version": "3.1.1",
"description": "The design for the first Lux AI Challenge",
"main": "lib/es5/index.js",
"types": "lib/es5/index.d.ts",
"scripts": {
"test": "nyc --reporter=html mocha tests/*.spec.ts",
"build": "rm -rf lib && tsc -p tsconfig-build.json && tsc -p tsconfig-buildes5.json",
"prettier": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"clean": "sh clean.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lux-AI-Challenge/LuxDesign.git"
},
"keywords": [
"AI",
"Lux",
"Competition"
],
"author": "Lux-AI-Challenge",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lux-AI-Challenge/LuxDesign/issues"
},
"files": [
"lib"
],
"bin": {
"lux-ai-2021": "./lib/es5/bin/index.js"
},
"homepage": "https://github.com/Lux-AI-Challenge/LuxDesign#readme",
"dependencies": {
"colors": "1.4.0",
"dimensions-ai": "^5.1.3",
"jszip": "^3.5.0",
"nanoid": "^3.1.12",
"seedrandom": "^3.0.5",
"yargs": "^17.0.1"
},
"sideEffects": false,
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.2",
"@types/seedrandom": "^2.4.28",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"chai": "^4.2.0",
"eslint": "^7.8.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}