-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 991 Bytes
/
package.json
File metadata and controls
52 lines (52 loc) · 991 Bytes
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
{
"name": "naubino42",
"version": "0.1.0",
"description": "",
"author": "",
"license": "MIT",
"dependencies": {
"eventemitter3": "^2.0.3",
"lodash": "*",
"matter-js": "https://github.com/payload/matter-js.git",
"pepjs": "^0.4.3",
"watchify": "*"
},
"devDependencies": {
"@types/chai": "*",
"@types/lodash": "*",
"@types/matter-js": "*",
"@types/mocha": "*",
"@types/node": "*",
"awesome-typescript-loader": "^3.2.3",
"chai": "*",
"mocha": "*",
"nyc": "^11.2.1",
"source-map-loader": "^0.2.2",
"source-map-support": "^0.4.18",
"ts-node": "^3.3.0",
"typescript": "*",
"webpack": "^3.7.1"
},
"scripts": {
"build": "tsc",
"webpack": "webpack",
"test": "nyc mocha"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text",
"html"
],
"all": true
}
}