-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "cssobjectjs",
"version": "1.6.1",
"description": "A Parser CSS in Javascript Vanilla",
"keywords": [
"css-parse",
"javascript-parser",
"javascript-vanilla"
],
"author": "KugiHaito",
"license": "MIT",
"type": "module",
"main": "cssobject.js",
"scripts": {
"test": "jest",
"build-dev": "webpack --mode development",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KugiHaito/CSSObject.js.git"
},
"bugs": {
"url": "https://github.com/KugiHaito/CSSObject.js/issues"
},
"homepage": "https://github.com/KugiHaito/CSSObject.js#readme",
"jest": {
"testEnvironment": "jsdom"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"babel-loader": "^8.2.2",
"jest": "^27.4.7",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
}
}