-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "rollup-plugin-screepy",
"description": "Rollup Plugin for Screeps, but Creepier",
"license": "MIT",
"author": "Forked from Adam Laycock (Arcath), fork by Austin Clarke (aclarke822)",
"repository": {
"type": "git",
"url": "https://github.com/aclarke822/rollup-plugin-screeps"
},
"version": "3.0.6",
"exports": "./dist/index.cjs",
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"type": "module",
"files": [
"/dist"
],
"scripts": {
"compile": "tsc --declaration",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" \"typings/**/*.ts\"",
"lint-and-fix": "eslint --fix \"src/**/*.ts\" \"tests/**/*.ts\" \"typings/**/*.ts\"",
"build": "rollup -c",
"test": "mocha",
"ts-node": "node --trace-warnings --loader=ts-node/esm ./tests/rollup-screeps-plugin.spec.ts"
},
"dependencies": {
"screeps-api": "^1.x"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.x",
"@types/chai": "^4.x",
"@types/git-rev-sync": "^2.x",
"@types/mocha": "^9.x",
"@types/node": "^17.x",
"@typescript-eslint/eslint-plugin": "^5.x",
"@typescript-eslint/parser": "^5.x",
"chai": "^4.x",
"eslint": "^8.x",
"eslint-plugin-no-loops": "^0.x",
"esm": "^3.x",
"git-rev-sync": "^3.x",
"mocha": "^9.x",
"rollup": "^2.x",
"rollup-plugin-copy": "^3.x",
"rollup-plugin-delete": "^2.x",
"ts-node": "^10.x",
"typescript": "^4.x"
},
"keywords": [
"rollup",
"screeps"
],
"engines": {
"node": "^12.20.0 || >=14.13.1"
}
}