-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 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
44
45
46
47
48
{
"name": "mrdux",
"version": "2.0.8",
"homepage": "https://github.com/phytertek/mrdux#readme",
"repository": "https://github.com/phytertek/mrdux.git",
"bugs": {
"url": "https://github.com/phytertek/mrdux/issues"
},
"author": "Ryan Lowe <ryan.phytertek@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest --watch",
"build": "tsc && mv -f ./src/*.js ./",
"patch": "npm run git:patch && npm run github:push",
"git:patch": "git add . && git commit -m 'publish patch' && npm run patch:publish",
"patch:publish": "npm version patch && npm publish",
"minor": "npm run git:minor && npm run github:push",
"git:minor": "git add . && git commit -m 'publish minor' && npm run minor:publish",
"minor:publish": "npm version minor && npm publish",
"major": "npm run git:major && npm run github:push",
"git:major": "git add . && git commit -m 'publish major' && npm run major:publish",
"major:publish": "npm version major && npm publish",
"github:push": "git push origin master"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"jest": "^23.0.1",
"ts-jest": "^22.4.6",
"typescript": "^2.8.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"tslib": "^1.9.2"
}
}