-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 750 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 750 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
{
"name": "sane-flags",
"version": "0.3.3",
"description": "A small library for feature flags with explicitness in mind",
"keywords": [
"features",
"flags",
"switch",
"toggle"
],
"author": "Felipe Sere <felipesere@gmail.com>",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "mocha --require test/setup.js",
"prettier": "prettier --write test/*.js index.js"
},
"prettier": {
"semi": false,
"singleQuote": true,
"arrowParens": "always"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.0.0",
"coveralls": "^3.1.0",
"mocha": "^8.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0",
"prettier": "^2.0.5"
}
}