This repository was archived by the owner on May 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.2 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
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
{
"name": "thrux",
"version": "0.0.0-development",
"description": "Simple state management.",
"main": "dist/index.js",
"scripts": {
"gitc": "git add . && git-cz",
"tape": "tape-watch -r babel-register __test__/*.test.js",
"cover": "nyc npm run test:single",
"lint": "eslint src --ext .jsx,.js",
"lint:test": "eslint __test__ --ext .js",
"test": "npm run lint && npm run tape -- -p | faucet",
"test:single": "npm run lint && npm run tape -- --once -p | faucet",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"report": "nyc report --reporter=lcov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"precommit": "npm run cover",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir dist src",
"build:umd": "webpack",
"build:umd.min": "webpack -p --env.prod"
},
"repository": {
"type": "git",
"url": "https://github.com/Thram/thrux.git"
},
"keywords": [
"thrux",
"state",
"management"
],
"author": "Thram <thramposo@gmail.com> (https://thram.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Thram/thrux/issues"
},
"homepage": "https://github.com/Thram/thrux#readme",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"faucet": "^0.0.1",
"husky": "^0.13.3",
"npm-run-all": "^4.0.2",
"nyc": "^10.2.0",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.2",
"tape": "^4.6.3",
"tape-watch": "^2.3.0",
"umd": "^3.0.1",
"webpack": "^2.4.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}