forked from payload/naubino42
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 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
{
"name": "naubino42",
"version": "0.1.0",
"description": "",
"scripts": {
"build": "npm run build-ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"test": "nyc mocha",
"watchify": "watchify dist/main-web.js -o dist/main-web.browserify.js",
"browserify": "browserify dist/main-web.js -o dist/main-web.browserify.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"browserify": "*",
"eventemitter3": "^2.0.3",
"lodash": "*",
"matter-js": "https://github.com/payload/matter-js.git",
"nyc": "^11.2.1",
"pepjs": "^0.4.3",
"watchify": "*"
},
"devDependencies": {
"@types/chai": "*",
"@types/lodash": "*",
"@types/matter-js": "*",
"@types/mocha": "*",
"@types/node": "*",
"chai": "*",
"mocha": "*",
"source-map-support": "^0.4.18",
"ts-node": "^3.3.0",
"typescript": "*"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text",
"html"
],
"all": true
}
}