-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "strangelog",
"version": "2.0.2",
"description": "Painless file-based changelog management via CLI.",
"main": "index.js",
"repository": "[email protected]:neXenio/strangelog.git",
"author": "neXenio GmbH <[email protected]>",
"license": "MIT",
"scripts": {
"compile": "babel src/ --out-dir lib/",
"test-dev": "jest --config=jest.config.json --notify --watch",
"test-ci": "jest --config=jest.config.json --runInBand",
"lint": "yarn run eslint .",
"lint-fix": "yarn run lint -- --fix",
"flow": "flow",
"flow-typed": "flow-typed",
"ci-pipeline": "DEBUG_CLI_TESTS=true yarn run test-ci && yarn run lint && yarn run flow",
"prepublish": "yarn run compile",
"start": "babel-node src/cli/index.js",
"changelog": "strangelog",
"changelog-generate": "strangelog generate --outFile CHANGELOG.md"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.3.0",
"exec-sh": "^0.2.0",
"flow-bin": "^0.47.0",
"flow-typed": "^2.1.2",
"jest": "^20.0.4",
"lolex": "^1.6.0",
"strangelog": "^1.1.5"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"fs-extra": "^3.0.1",
"glob": "^7.1.2",
"inquirer": "^3.1.1",
"js-yaml": "^3.8.4",
"semver": "^5.4.1",
"yargs": "^8.0.2"
},
"bin": {
"strangelog": "./lib/cli/index.js"
}
}