forked from SimonAlling/userscripter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.91 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "userscripter",
"version": "1.3.3",
"description": "Create userscripts in a breeze!",
"keywords": [
"userscript",
"user script",
"browser",
"extension"
],
"author": {
"name": "Simon Alling",
"email": "[email protected]",
"url": "https://simonalling.se"
},
"license": "MIT",
"homepage": "https://github.com/simonalling/userscripter",
"repository": {
"type": "git",
"url": "https://github.com/simonalling/userscripter"
},
"bugs": {
"url": "https://github.com/simonalling/userscripter/issues"
},
"main": "lib/index",
"files": [
"bin/*",
"bootstrap/*",
"build/*",
"lib/*"
],
"bin": {
"userscripter": "./bin/cli.js"
},
"scripts": {
"build-cjs": "npm run clean && npm run compile-cjs",
"build-esm": "npm run clean && npm run compile-esm",
"compile-cjs": "tsc -d --module CommonJS -p .",
"compile-esm": "tsc -d -p .",
"build": "npm run clean && npm run compile-esm && npm run rename && npm run compile-cjs",
"clean": "rm -rf lib build bin",
"lint": "tslint --project .",
"prepublishOnly": "npm run verify && cli-confirm 'Publish?'",
"rename": "renamer --force --find \"/\\.js$/\" --replace \".mjs\" \"lib/**\" \"build/**\"",
"test": "npm run lint && npm run jest",
"jest": "jest",
"verify": "repository-check-dirty && npm install && npm run build && npm test && npm pack"
},
"sideEffects": false,
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": ".+\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"devDependencies": {
"@types/jest": "^24.0.23",
"cli-confirm": "^1.0.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"renamer": "^1.1.4",
"repository-check-dirty": "^1.0.2",
"ts-jest": "^24.1.0",
"ts-preferences": "^2.0.0",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"peerDependencies": {
"ts-preferences": "^2.0.0"
},
"dependencies": {
"@typed/compose": "^1.0.0",
"@types/fs-extra": "^8.0.1",
"@types/json-schema": "^7.0.3",
"@types/loader-utils": "^1.1.3",
"@types/node": "^12.12.8",
"@types/node-sass": "^4.11.0",
"@types/terser-webpack-plugin": "^2.2.0",
"@types/webpack": "^4.39.9",
"@types/yargs": "^13.0.3",
"awesome-typescript-loader": "^5.2.0",
"css-loader": "^3.2.0",
"fs-extra": "^8.1.0",
"lines-unlines": "^1.0.0",
"loader-utils": "^1.2.3",
"node-sass": "^4.13.1",
"node-sass-utils": "^1.1.2",
"raw-loader": "^4.0.0",
"restrict-imports-loader": "^3.2.1",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"schema-utils": "^2.5.0",
"terser-webpack-plugin": "^2.3.1",
"to-string-loader": "^1.1.6",
"ts-type-guards": "^0.6.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"userscript-metadata": "^1.0.0",
"webextension-manifest": "^1.0.0",
"webpack": "^4.41.2",
"yargs": "^15.0.2"
}
}