-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.35 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
72
73
{
"name": "cppkies",
"version": "0.2.3",
"description": "Cppkies is a modding framework for the game Cookie Clicker. It intends to make modding the game very simple.",
"main": "./dist/index.js",
"scripts": {
"test": "npx jest",
"code-test": "npm run prodBuild && npm run eslint",
"build": "npx rollup -c",
"prodBuild": "echo {\\\"prod\\\":true} > isprod.json && export NODE_ENV=\"production\" && npm run build && npm run preprod",
"watch": "echo {\\\"prod\\\":false} > isprod.json && export NODE_ENV=\"development\"&&npm run build -- --watch",
"eslint": "npx eslint ./src/**/*.ts ./src/*.ts ./*.js",
"eslint:fix": "npm run eslint -- --fix",
"preprod": "cp -r ./dist/src/* ./dist/ && rm -r dist/src"
},
"husky": {
"hooks": {
"pre-commit": "npm run code-test && git add .",
"pre-push": "npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cppkies-Team/Cppkies.git"
},
"author": "Cppkies team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cppkies-Team/Cppkies/issues"
},
"types": "./dist/index.d.ts",
"homepage": "https://github.com/Cppkies-Team/Cppkies#readme",
"peerDependencies": {},
"dependencies": {
"@types/cookieclicker": "^2.31.3"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/jest": "^26.0.15",
"@types/puppeteer": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel": "^6.23.0",
"babel-minify": "^0.5.1",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.1",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"puppeteer": "^3.3.0",
"rollup": "^1.32.1",
"rollup-plugin-analyzer": "^3.3.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^9.1.1",
"rollup-plugin-typescript2": "^0.25.3",
"serve": "^11.3.2",
"spawnd": "^4.4.0",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
}
}