forked from pencil-js/pencil.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "@pencil.js/text",
"version": "1.3.1",
"description": "Text writing for Pencil.js package.",
"main": "text.js",
"files": [],
"scripts": {
"test": "nyc --require esm --reporter=text ava"
},
"ava": {
"require": [
"esm",
"../../test/helpers/browser-env-setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/GMartigny/pencil.js.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"pencil.js",
"writing"
],
"dependencies": {
"@pencil.js/component": "^1.3.0",
"@pencil.js/network-event": "^1.2.0",
"@pencil.js/offscreen-canvas": "^1.3.0",
"@pencil.js/position": "^1.3.0",
"@sindresorhus/fnv1a": "^1.0.0",
"text-direction": "^1.1.0"
},
"author": "Guillaume Martigny <[email protected]> (https://www.guillaume-martigny.fr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GMartigny/pencil.js/issues"
},
"devDependencies": {
"ava": "^0.25.0",
"esm": "^3.0.81",
"nyc": "^13.0.1"
}
}