-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.86 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
{
"name": "@stijnvanhulle/css-vars-loader",
"version": "1.2.1",
"description": "Loader to use config.json file as css variables",
"main": "lib/index.js",
"module": "es/index.js",
"esnext": "esnext/index.js",
"types": "types/index.d.ts",
"scripts": {
"start": "yarn build -- -w",
"build": "yarn run build:es && yarn run build:esnext && yarn run build:commonjs",
"build:es": "rimraf ./es && BABEL_ENV=es babel --copy-files --out-dir es --extensions .ts,.tsx --ignore '**/*.test.ts,**/__tests__/**' ./src",
"build:esnext": "rimraf ./esnext && tsc -p ./tsconfig.esnext.json",
"build:commonjs": "rimraf ./lib && BABEL_ENV=commonjs babel --copy-files --out-dir lib --extensions .ts,.tsx --ignore '**/*.test.ts,**/__tests__/**' ./src",
"build:types": "rimraf ./types && tsc -p ./tsconfig.types.json",
"postbuild": "yarn run build:types && yarn run rewrite-paths",
"rewrite-paths": "tsconfig-replace-paths -p ./tsconfig.json -s ./src -o ./esnext && tsconfig-replace-paths -p ./tsconfig.json -s ./src -o ./es && tsconfig-replace-paths -p ./tsconfig.json -s ./src -o ./lib",
"pack": "yarn build && yarn pack",
"transpile": "tsc -p ./tsconfig.json",
"typecheck": "tsc --noEmit",
"typecheck:watch": "yarn run typecheck -- --watch",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "echo 'No test'",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major"
},
"files": [
"lib",
"es",
"esnext",
"types"
],
"repository": {
"type": "git",
"url": "git://github.com/stijnvanhulle/css-vars-loader.git"
},
"author": "Stijn Van Hulle <[email protected]",
"license": "MIT",
"publishConfig": {
"access": "public",
"@stijnvanhulle:registry": "https://npm.pkg.github.com"
},
"peerDependencies": {
"webpack": "^5.67.0"
},
"dependencies": {
"@babel/preset-typescript": "^7.16.7",
"schema-utils": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@webpack-contrib/defaults": "^6.3.0",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"rimraf": "^3.0.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"typescript": "^4.5.5",
"tsconfig-replace-paths": "^0.0.11",
"webpack": "^5.67.0"
},
"browserslist": [
"maintained node versions"
]
}