-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.49 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
{
"name": "nxt-sortablejs",
"description": "Angular sortablejs bindings.",
"bugs": "https://github.com/Liquid-JS/nxt-components/issues",
"version": "19.0.4",
"license": "MIT",
"type": "module",
"repository": "https://github.com/Liquid-JS/nxt-components.git",
"homepage": "https://github.com/Liquid-JS/nxt-components/tree/master/packages/sortablejs",
"keywords": [
"nxt-sortablejs",
"ng-sortablejs",
"angular-sortablejs",
"sortablejs",
"angular",
"sortable",
"draggable"
],
"scripts": {
"watch": "ng build sortablejs --configuration \"development\" --watch",
"build": "ng build sortablejs --configuration \"production\"",
"lint": "ng lint sortablejs",
"lint:fix": "yarn lint --fix",
"_lint:html": "js-beautify --type html -r -f ./src/**/*.html --config ./js-beautify.json",
"_lint:sass": "stylelint \"src/**/*.scss\"",
"_lint:sass:fix": "yarn lint:sass --fix",
"test": "ng test sortablejs --no-watch",
"test:watch": "ng test sortablejs",
"docs": "npx compodoc -c .compodocrc.json",
"docs:json": "yarn docs --exportFormat json --output ../demo/src/app/sortablejs"
},
"peerDependencies": {
"@angular/common": "^19.0.0",
"@angular/core": "^19.0.0",
"sortablejs": ">=1.15.0"
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/sortablejs": "^1.15.8"
}
}