-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 927 Bytes
/
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
{
"name": "observable",
"version": "1.0.0",
"description": "",
"main": "test.js",
"scripts": {
"build": "parcel build ./observable/index.js",
"test": "nyc mocha \"./test/**/*.test.js\" --exit"
},
"dependencies": {
"parcel": "^2.10.1",
"parcel-bundler": "^1.12.5"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidmdm/Observable.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidmdm/Observable/issues"
},
"homepage": "https://github.com/davidmdm/Observable#readme",
"nyc": {
"include": [
"**/*.js"
],
"exclude": [
"node_modules"
],
"extension": [
".js"
],
"reporter": [
"html",
"text"
],
"sourceMap": true,
"instrument": true
}
}