-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
{
"name": "expo-2d-context",
"version": "0.0.4",
"description": "A pure-JS implementation of the W3C's Canvas-2D Context API that can run on top of either Expo Graphics or a browser WebGL context.",
"author": "Naomi Alterman",
"main": "src/Expo2DContext.js",
"types": "src/Expo2DContext.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-2d-context.git"
},
"license": "MIT",
"scripts": {
"build": "esbuild src/exports.js --bundle --outfile=dist/bundle.js --loader:.png=dataurl",
"lint": "eslint src",
"test": "npm run test:copy-bundle && npm run test:serve & npm run test:run-suite",
"test:run-suite": "node ./test/collateral/html/runSuite.js --base-url 'http://127.0.0.1:8080' all",
"test:serve": "http-server test/collateral/html",
"test:copy-bundle": "cp dist/bundle.js test/collateral/html/bundle.js"
},
"eslintConfig": {
"root": true,
"extends": [
"universe/shared/core",
"universe/shared/prettier"
],
"env": {
"browser": true
},
"ignorePatterns": ["*.d.ts"]
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"dependencies": {
"adaptive-bezier-curve": "1.0.3",
"adaptive-quadratic-curve": "1.0.2",
"color-convert": "^1.9.3",
"css-font-parser": "0.2.3",
"domexception": "1.0.1",
"earcut": "2.1.1",
"gl-matrix": "^2.4.0",
"parse-bmfont-ascii": "1.0.6",
"string-format": "0.5.0",
"tess2": "^1.0.0"
},
"peerDependencies": {
"expo-asset": "*"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"argparse": "^1.0.10",
"esbuild": "^0.8.52",
"eslint": "^7.22.0",
"eslint-config-universe": "^7.0.1",
"http-server": "^0.12.3",
"prettier": "^2.2.1",
"puppeteer": "^1.9.0"
}
}