-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.28 KB
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
{
"name": "siren-parser",
"version": "9.2.3",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"build": "babel src --out-dir ./dist --source-maps",
"lint": "eslint src test --ext .js",
"test": "npm run lint && npm run test:unit",
"test:unit": "nyc mocha"
},
"files": [
"/dist",
"/src",
"global.js"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"homepage": "https://github.com/Brightspace/node-siren-parser",
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/node-siren-parser.git"
},
"bugs": {
"url": "https://github.com/Brightspace/node-siren-parser/issues"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/node": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/register": "^7.12.13",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-config-brightspace": "^0.12.0",
"mocha": "^10.8.2",
"nock": "^13.0.7",
"nyc": "^15.1.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"supertest": "^6.1.3"
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
}
}