forked from bencbartlett/creep-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "creep-tasks",
"version": "1.3.0",
"description": "Tasks for your creeps",
"author": "Ben Bartlett",
"repository": {
"type": "git",
"url": "git+https://github.com/bencbartlett/Creep-Tasks.git"
},
"homepage": "https://github.com/bencbartlett/Creep-Tasks#readme",
"bugs": {
"url": "https://github.com/bencbartlett/Creep-Tasks/issues"
},
"main": "dist/index.js",
"types": "typings/creep-tasks.d.ts",
"scripts": {
"build": "tsc -p .",
"compile": "tsc -p .",
"clean": "rm -rf dist",
"test": "npm run clean && npm run build"
},
"license": "Unlicense",
"devDependencies": {
"@types/lodash": "^3.10.1",
"rollup": "^0.55.3",
"rollup-plugin-clean": "^1.0.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-screeps": "0.1.2",
"rollup-plugin-typescript2": "^0.11.0",
"typescript": "^2.7.2"
},
"dependencies": {
"@types/screeps": "^2.4.0"
},
"files": [
"dist/**/*",
"typings/**/*"
]
}