forked from CCALI/a2jdeps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@caliorg/a2jdeps",
"version": "7.1.7",
"description": "Shared dependencies for A2J Author, A2J Viewer, and A2J Document Assembly Tool (A2J DAT)",
"main": "",
"scripts": {
"lint": "standard --fix --env mocha",
"test": "npm run lint && npm run testee",
"testee": "testee --reporter Spec --browsers firefox tests/index.html",
"preversion": "npm test",
"release:pre": "npm version prerelease && npm publish --tag=pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"postpublish": "git push --tags && git push"
},
"author": {
"name": "Center for Computer-Assisted Legal Instruction (CALI)",
"email": "[email protected]",
"url": "https://www.a2jauthor.org"
},
"license": "GNU AGPL v3.0",
"steal": {
"paths": {
"tokenfield-jquery": "node_modules/bootstrap-tokenfield/node_modules/jquery/dist/jquery.js"
},
"map": {
"chai": "chai/chai"
},
"plugins": [
"steal-less",
"steal-stache"
],
"npmIgnore": [
"testee"
]
},
"dependencies": {
"bootstrap": "^3.4.1",
"can-component": "^4.6.3",
"can-define": "^2.8.0",
"can-dom-events": "^1.3.11",
"can-list": "^4.2.2",
"can-map": "^4.3.12",
"can-map-define": "^4.4.0",
"can-model": "^4.1.0",
"can-reflect-promise": "^2.2.1",
"can-stache": "^4.17.21",
"can-stache-converters": "^4.2.5",
"can-stache-route-helpers": "^1.1.1",
"cuid": "^2.1.8",
"escape-string-regexp": "^4.0.0",
"html-entities": "^2.3.2",
"jquery": "^3.5.1",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"numbro": "^2.2.0",
"pdfjs-dist": "^2.0.466",
"uuid": "^8.3.2"
},
"devDependencies": {
"can-fixture": "^2.1.0",
"can-view-autorender": "^6.0.0",
"can-view-model": "^4.0.3",
"chai": "^4.2.0",
"funcunit": "^3.7.0",
"sinon": "^1.17.7",
"standard": "^17.0.0",
"steal": "^1.12.4",
"steal-css": "^1.3.1",
"steal-less": "^1.2.2",
"steal-mocha": "^2.0.1",
"steal-stache": "^4.1.5",
"steal-tools": "^1.11.10",
"testee": "^0.9.1"
},
"standard": {
"globals": [
"$",
"jQuery",
"can",
"mocha"
],
"ignore": [
"/models/fixtures-author/",
"/models/fixtures/",
"styles/documentjs-theme/"
],
"env": [
"mocha"
]
}
}