-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"name": "@constructor-io/constructorio-id",
"version": "2.8.0",
"description": "A JavaScript module for managing identity and sessions",
"repository": "https://github.com/Constructor-io/constructorio-identity",
"author": "Constructor.io Corporation",
"license": "MIT",
"main": "src/constructorio-id.js",
"nyc": {
"exclude": [
"spec"
]
},
"scripts": {
"clean": "rm -rf node_modules",
"format": "eslint --fix ",
"lint": "eslint spec/*.js src/*.js",
"coverage": "nyc --reporter=html mocha spec/",
"postcoverage": "serve --listen 8080 coverage",
"test": "mocha spec/",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"chai": "^4.2.0",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.4",
"jsdom": "^28.1.0",
"mocha": "^11.1.0",
"nyc": "^15.1.0",
"serve": "^14.2.0",
"sinon": "^7.4.2"
}
}