-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.81 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.81 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
49
{
"name": "logger",
"version": "3.11.3",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "webpack --progress --config webpack.config.js",
"lint": "eslint ./src --ext .js --cache --fix --ext .jsx --cache --fix",
"postbuild": "node scripts/postbuild.js",
"postversion": "git push origin HEAD --follow-tags",
"prebuild": "rimraf lib && rimraf demo",
"release:breakingchange": "npm version major -m 'Bumped major version number' && npm run release:master",
"release:bugfix": "npm version patch -m 'Bumped patch version number' && npm run release:master",
"release:feature": "npm version minor -m 'Bumped minor version number' && npm run release:master",
"release:master": "git checkout master && git merge --squash --strategy-option theirs develop && git commit -am 'Release Commit' && git push && git checkout develop",
"start": "webpack-dev-server --progress --config webpack.config.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StateTree/logger.git"
},
"author": "Sanjay Krihshna Anbalagan",
"license": "MIT",
"bugs": {
"url": "https://github.com/StateTree/logger/issues"
},
"homepage": "https://github.com/StateTree/logger#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"diff": "git+http://github.com/StateTree/diff.git",
"eslint": "^4.1.1",
"eslint-loader": "^1.8.0",
"fs-extra": "^3.0.1",
"rimraf": "^2.6.2",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.8.2"
},
"files": [
"lib"
],
"dependencies": {
"diff": "git+http://github.com/StateTree/diff.git",
"pivoted-linked-list": "git+https://github.com/StateTree/pivoted-linked-list.git"
}
}