-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "flexpad",
"version": "4.0.2",
"description": "A CSS flexbox system",
"main": "dist/src/index.js",
"files": [
"dist/src/**/*",
"dist/flexpad.css",
"dist/flexpad.min.css"
],
"author": "David Hérault <[email protected]> (https://github.com/dherault)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dherault/flexpad.git"
},
"bugs": {
"url": "https://github.com/dherault/flexpad/issues"
},
"homepage": "https://github.com/dherault/flexpad",
"keywords": [
"css",
"flexbox",
"grid",
"layout"
],
"scripts": {
"start": "npx serve",
"start:watch": "npm start",
"dev": "nodemon --exec npm run build --watch src --watch demo.js --watch index.html",
"clean": "rimraf dist",
"build": "npm run build:module && npm run build:css",
"build:css": "ts-node -O '{\"module\":\"commonjs\"}' src/build.ts",
"build:module": "npx tsc --declaration",
"lint": "eslint demo.js src",
"prepublishOnly": "npm run clean && npm run build"
},
"devDependencies": {
"@types/csso": "^5.0.0",
"@types/node": "^20.4.6",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"csso": "^5.0.5",
"eslint-config-dherault-typescript": "^1.3.2",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}