-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "@codedread/carve",
"version": "0.0.1",
"description": "carve is a vector graphics editor",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/codedread/carve.git"
},
"keywords": [
"svg",
"vector graphics",
"image editor"
],
"author": "Jeff Schiller",
"license": "MIT",
"bugs": {
"url": "https://github.com/codedread/carve/issues"
},
"homepage": "https://github.com/codedread/carve",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/sinon": "^10.0.2",
"@types/sinonjs__fake-timers": "^6.0.3",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"gh-pages": "^3.2.3",
"global-jsdom": "^8.2.0",
"jsdom": "^17.0.0",
"mocha": "^9.1.1",
"sinon": "^11.1.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"scripts": {
"copy-files": "copyfiles -u 1 -e \"src/**/*.ts\" src/*.* \"src/**/*.*\" dist",
"build": "tsc && npm run copy-files",
"test": "./node_modules/.bin/mocha --loader=ts-node/esm -r global-jsdom/register 'src/**/*.test.ts'",
"deploy": "npm run build && gh-pages -d dist"
}
}