-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "tbxforms",
"version": "3.0.0",
"main": "./dist/tbxforms.umd.js",
"module": "./dist/tbxforms.es.js",
"files": [
"dist/*.js",
"dist/*.css",
"dist/**/*.scss"
],
"description": "A Torchbox-flavoured template pack for django-crispy-forms, adapted from crispy-forms-gds",
"author": "Kyle Bayliss <[email protected]>",
"private": false,
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/torchbox/tbxforms.git"
},
"bugs": {
"url": "https://github.com/torchbox/tbxforms/issues"
},
"homepage": "https://github.com/torchbox/tbxforms",
"keywords": [
"crispy",
"django",
"django crispy forms",
"forms",
"gds",
"tbxforms",
"wagtail"
],
"devDependencies": {
"autoprefixer": "^10.4.2",
"eslint": "^7.32.0",
"prettier": "^2.3.2",
"sass": "^1.69.7",
"vite": "^2.9.18"
},
"scripts": {
"lint:js": "eslint --report-unused-disable-directives .",
"lint:format": "prettier --check '**/?(.)*.{css,scss,js,ts,tsx,json,yaml,yml,md}'",
"lint": "npm run lint:js && npm run lint:format",
"format": "prettier --write '**/?(.)*.{css,scss,js,ts,tsx,json,yaml,yml,md}'",
"build": "vite build && cp -R tbxforms/static/sass/* dist/",
"report:package": "npm pack --loglevel notice 2>&1 >/dev/null | sed -e 's/^npm notice //' && rm *.tgz"
}
}