-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "cssjson",
"version": "3.0.0",
"description": "Converts CSS to JSON and back.",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "npm run lint && npm run test && webpack --mode production && tsc -p ./",
"lint": "npx eslint '**/*.{ts,js}' --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "jest",
"build:toc": "npx doctoc ./README.md"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.15.0",
"eslint-plugin-deprecate": "^0.7.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.3.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
},
"license": "MIT",
"author": {
"name": "Aram Kocharyan https://github.com/aramk"
},
"bugs": {
"url": "https://github.com/aramk/CSSJSON/issues"
},
"homepage": "https://github.com/aramk/CSSJSON",
"keywords": [
"css",
"json",
"json",
"to",
"css",
"json",
"to",
"css",
"converter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aramk/CSSJSON.git"
}
}