-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "style-prepend-loader",
"version": "0.0.3",
"description": "Prepend style files with ts/js configuration objects",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/Nvveen/style-prepend-loader",
"author": "Neal van Veen <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/babel__core": "^7.1.7",
"@types/loader-runner": "^2.2.3",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"watch": "tsc --watch",
"test": "echo 1",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"loader-runner": "^3.1.0"
},
"files": [
"dist/"
]
}