-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.57 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
{
"name": "@statetree/functions",
"version": "6.1.0",
"description": "cluster of function that can be chained to create a pipeline ",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"lint": "eslint ./src --ext .js --cache --fix --ext .jsx --cache --fix",
"test": "./node_modules/.bin/mocha test/**/*test.js --timeout 0 --require ./node_modules/@babel/register --require test/helpers/*.js -R spec",
"coverage": "NODE_ENV=coverage ./node_modules/.bin/nyc npm run test",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"doc": "./node_modules/.bin/esdoc open ./docs/index.html",
"prebuild": "rimraf lib && rimraf build",
"build": "./node_modules/.bin/webpack --mode production ",
"postbuild": "node scripts/postbuild.js",
"release:master": "git checkout master && git merge --squash --strategy-option theirs develop && git commit -am 'Release Commit' && git push && git checkout develop",
"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:breakingchange": "npm version major -m 'Bumped major version number' && npm run release:master",
"postversion": "git push origin HEAD --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StateTree/functions.git"
},
"author": "Sanjay Krishna Anbalagan",
"license": "MIT",
"bugs": {
"url": "https://github.com/StateTree/functions/issues"
},
"homepage": "https://statetree.github.io/functions/docs/",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.0.1",
"chai": "^4.2.0",
"co-exec": "^1.1.0",
"codecov": "^3.5.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.6.1",
"eslint-loader": "^2.1.1",
"fs-extra": "^7.0.0",
"ghooks": "^2.0.4",
"jsdom": "^12.2.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"rimraf": "^2.6.2",
"sinon": "^7.3.2",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"config": {
"ghooks": {
"pre-commit": "npm run test"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@statetree/ticker": "^3.4.1"
}
}