-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 996 Bytes
/
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
{
"name": "flagg",
"version": "1.1.2",
"description": "Declarative Feature Flagging for your Javascript App",
"main": "dist/index.js",
"homepage": "https://jamesmfriedman.github.io/flagg/",
"scripts": {
"build": "npm run clean && tsc",
"start": "cd demo && npm start",
"clean": "rm -rf dist",
"build:docs": "cd demo && npm run build && rm -rf ../docs && mv -f ./build ../docs && git add --all && git commit -m 'Building Docs'",
"test": "jest --coverage",
"preversion": "npm run clean && npm test",
"version": "npm run build",
"postpublish": "npm run clean && npm run build:docs && git push && git push --tags",
"test:watch": "jest --watch"
},
"files": [
"dist"
],
"author": "James Friedman",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"@types/react": "^16.9.11",
"jest": "^24.9.0",
"react": "^16.11.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
}
}