-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 KB
/
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
{
"name": "@mathdoy/toggle-restify",
"version": "1.1.2",
"description": "Toggle feature, a feature flag library for your restify backend",
"keywords": [
"Toggle",
"features",
"feature flags",
"flags",
"feature toggle",
"feature switch"
],
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"authors": [
"Mathieu Doyon"
],
"repository": "MathieuDoyon/toggle",
"license": "MIT",
"scripts": {
"build": "rimraf ./lib && cross-env NODE_ENV=production babel ./src --config-file ../../babel.config.js -d ./lib --ignore spec.js,test.js",
"watch": "rimraf ./lib && cross-env NODE_ENV=production babel --watch ./src --config-file ../../babel.config.js -d ./lib --ignore spec.js,test.js",
"postinstall": "node postinstall.js"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/runtime": "^7.0.0",
"cross-env": "^5.2.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"@mathdoy/toggle-middleware": "^1.1.2",
"lodash.clonedeep": "^4.5.0"
},
"gitHead": "a6aebb3ee11037295048f779f6fd6f9d7e337995"
}