-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "cropduster",
"version": "8.0.0",
"description": "Library for building web pages for use with Movable Ink Web Crops",
"main": "dist/cropduster.js",
"module": "dist/cropduster.es.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"esbuild": "^0.16",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.0",
"karma-esbuild": "^2.2.5",
"karma-qunit": "^4.1.2",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.4.0",
"pretender": "^3.4.7",
"qunit": "^2.19.0",
"release-it": "^13.6.5",
"rimraf": "^5.0.0",
"sinon": "^4.1.1",
"typescript": "^5.0.4"
},
"scripts": {
"test": "yarn run karma start",
"develop-test": "KARMA_WATCH=true yarn run karma start",
"build": "yarn clean && node build.js && tsc --emitDeclarationOnly --outDir dist",
"prepare": "yarn build",
"clean": "rimraf dist",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/movableink/cropduster.git"
},
"keywords": [
"movableink",
"webcrop",
"email"
],
"author": "Michael Nutt <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/movableink/cropduster/issues"
},
"homepage": "https://github.com/movableink/cropduster"
}