-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.96 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "is-mode",
"version": "0.0.5",
"description": "Provides branching using query parameters.",
"keywords": [
"balancing",
"query parameter"
],
"homepage": "https://github.com/Himenon/is-mode#readme",
"bugs": {
"url": "https://github.com/Himenon/is-mode/issues"
},
"repository": "is-mode",
"license": "MIT",
"author": {
"name": "Himenon",
"email": "k.himeno314@gmail.com",
"url": "https://github.com/Himenon"
},
"files": [
"lib",
"package.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "yarn run clean && tsc -p ./tsconfig.build.json",
"ci:notify:release": "ts-node ./scripts/notify.ts",
"clean": "rimraf ./lib",
"cli": "node ./lib/cli.js",
"commitmsg": "commitlint -e $GIT_PARAMS",
"cruiser": "dependency-cruiser --validate .dependency-cruiser.json src",
"develop": "yarn run build --watch",
"format": "prettier --config .prettierrc --write src/*.{ts,tsx}",
"lint": "eslint -c ./.eslintrc.json 'src/**/*.{ts,tsx}'",
"lint:fix": "yarn run lint --fix",
"server": "serve -l 5000 ./public",
"start": "yarn run develop",
"test": "yarn run cruiser && yarn run test:jest",
"test:ci": "yarn run test && codecov",
"test:jest": "jest -c ./jest.config.json --detectOpenHandles",
"test:watch": "yarn run test:jest --watch",
"version_up:major": "changelog -M && git add CHANGELOG.md && git commit -m \"chore(change-log): updated CHANGELOG.md\" && npm version major",
"version_up:minor": "changelog -m && git add CHANGELOG.md && git commit -m \"chore(change-log): updated CHANGELOG.md\" && npm version minor",
"version_up:patch": "changelog -p && git add CHANGELOG.md && git commit -m \"chore(change-log): updated CHANGELOG.md\" && npm version patch"
},
"dependencies": {
"@ungap/url-search-params": "^0.1.2"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/jest": "^24.0.11",
"@types/jsdom": "^12.2.3",
"@types/node": "^11.11.3",
"@types/puppeteer": "^1.12.3",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/eslint-plugin-tslint": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"codecov": "^3.2.0",
"dependency-cruiser": "^4.14.0",
"eslint": "^5.15.1",
"generate-changelog": "^1.7.1",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jest-cli": "^24.5.0",
"jest-dev-server": "^4.0.0",
"jest-puppeteer": "^4.1.0",
"jsdom": "^14.0.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"puppeteer": "^1.13.0",
"requirejs": "^2.3.6",
"rimraf": "^2.6.3",
"serve": "^10.1.2",
"sort-package-json": "^1.21.0",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.3.3333"
}
}