forked from NickColley/scrambo
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.41 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
{
"name": "scrambow",
"version": "1.8.1",
"description": "Javascript Rubik's Cube Scramble Generator",
"repository": {
"type": "git",
"url": "git://github.com/Owstin/scrambow.git"
},
"keywords": [
"scramble",
"scrambow",
"cube",
"rubik",
"jsss"
],
"author": "Austin Moore <owstingreen@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Owstin/scrambow/issues"
},
"main": "dist/scrambow.js",
"types": "dist/src/index.d.ts",
"bin": {
"scrambow": "./dist/cli.js"
},
"files": [
"/dist"
],
"scripts": {
"dev:cli": "ts-node src/cli.ts",
"test": "jest",
"build": "webpack",
"postbuild": "node scripts/addSheBang.js dist/cli.js",
"lint": "eslint . --ext .ts",
"prepare": "npm run build"
},
"dependencies": {
"commander": "^8.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@types/jest": "^27.0.2",
"@types/node": "^10.12.0",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.5.0",
"jest": "^27.2.4",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.2.4",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"typescript": "~4.4.3",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0"
}
}