-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 982 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 982 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
34
{
"name": "@mathdoy/toggle-querystring",
"version": "1.1.0",
"description": "Toggle feature, a feature flag library for your frontend, enabled toggle through query string",
"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"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/runtime": "^7.0.0",
"cross-env": "^5.2.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"qs": "^6.5.2"
}
}