-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.34 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
{
"name": "footures",
"version": "0.4.0",
"description": "Browser side features flags with a neat UI to help staff-users turn them on. Provides a query API for developers.",
"main": "dist/footures.js",
"directories": {
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:browser": "tsc-bundle src/footures.ts dist/footures.bundle.js --exportAs footures --allowJs",
"build:browser-admin": "tsc-bundle src/footures-admin.ts dist/footures-admin.bundle.js --exportAs footuresAdmin --allowJs",
"build:styles": "copyfiles -f ./src/footures.css ./dist",
"build": "npm run clean; tsc; npm run build:browser; npm run build:browser-admin; npm run build:styles",
"clean": "rimraf dist/*",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TypesetIO/footures.git"
},
"keywords": [
"feature-flags",
"flags",
"user-testing"
],
"author": "Dipanjan Mukherjee",
"license": "MIT",
"bugs": {
"url": "https://github.com/TypesetIO/footures/issues"
},
"homepage": "https://github.com/TypesetIO/footures#readme",
"devDependencies": {
"copyfiles": "^1.2.0",
"rimraf": "^2.6.1",
"source-map-loader": "^0.2.1",
"typescript": "^2.3.4",
"typescript-bundle": "^0.8.2"
}
}