-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1022 Bytes
/
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
{
"name": "steamy-helper",
"version": "0.1.2",
"description": "This userscript adds import/export functionality to your subscribed mods list on the Steam Workshop.",
"license": "Unlicense",
"author": "SavageCore",
"homepage": "https://github.com/SavageCore/steamy-helper#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SavageCore/steamy-helper.git"
},
"bugs": {
"url": "https://github.com/SavageCore/steamy-helper/issues"
},
"main": "main.js",
"scripts": {
"build": "gorilla --input ./src/main.js --output ./dist/steamy-helper.user.js --config gorilla.json",
"dev": "watch -p \"./src/**/*.js\" -c \"npm run build\"",
"lint": "standard",
"test": "npm run lint"
},
"dependencies": {
"watch-cli": "^0.2.3"
},
"devDependencies": {
"gorilla-build": "^0.1.16",
"standard": "^17.1.0"
},
"standard": {
"globals": [
"localStorage",
"location",
"DOMParser"
],
"ignore": [
"/dist/**/*"
]
}
}