-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.73 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
{
"name": "change-css",
"version": "1.0.0",
"description": "A library to help modify css in all it's forms easily.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:dev": "webpack --mode=development --watch --progress",
"build:prod": "webpack --mode=production",
"prepublishOnly": "webpack --mode=production",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test-server": "cd test_directory/vue-app && yarn && yarn serve",
"cy:run": "cypress run",
"test": "server-test test-server http://localhost:8000 cy:run"
},
"repository": {
"type": "git",
"url": "https://github.com/suryarajendhran/change-css.git"
},
"keywords": [
"css",
"dynamic",
"modify",
"typescript"
],
"author": "suryarajendhran <suryarajendhran@outlook.com> (https://suryarajendhran.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/suryarajendhran/change-css/issues",
"email": "suryarajendhran@outlook.com"
},
"homepage": "https://github.com/suryarajendhran/change-css",
"devDependencies": {
"@babel/core": "^7.13.15",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.1",
"cypress": "^7.0.1",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"jest": "^26.6.3",
"start-server-and-test": "^1.13.1",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0"
}
}