-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
82 lines (82 loc) · 2.52 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
{
"name": "rfx-core",
"license": "MIT",
"version": "0.0.0-development",
"author": "Claudio Savino <[email protected]> (https://twitter.com/foxhound87)",
"description": "RFX Core - Collection of core functionalities of RFX Stack",
"homepage": "https://www.npmjs.com/package/rfx-core",
"main": "lib/index.js",
"scripts": {
"clean:build": "rimraf lib && rimraf umd",
"clean:all": "npm run clean:build",
"clean:modules": "rimraf node_modules && npm cache clean",
"lint": "eslint . demo --ext .jsx,.js --ignore-path .gitignore",
"build": "babel -d lib/ src/",
"prebuild": "npm run clean:all",
"precommit": "npm run lint && npm run cover",
"commit": "git-cz && git push origin",
"watch:build": "babel --watch -d lib/ src/",
"watch:test": "npm run test -- -w",
"test": "mocha tests --compilers js:babel-register",
"cover": "nyc npm test",
"coverage:check": "nyc check-coverage --satements 0 --branches 0 --functions 0 --lines 0",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/foxhound87/rfx-core.git"
},
"keywords": [],
"files": [
"es6",
"lib",
"umd"
],
"engines": {
"node": ">=4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"json-stringify-safe": "5.0.1",
"lodash": "^4.17.11",
"safe-access": "0.1.0"
},
"peerDependencies": {
"mobx": "^2.5.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"babel-cli": "6.22.0",
"babel-core": "6.22.0",
"babel-eslint": "^8.2.3",
"babel-loader": "6.2.10",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-lodash": "3.2.9",
"babel-plugin-transform-class-properties": "6.22.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.22.0",
"chai": "3.5.0",
"codecov": "1.0.1",
"commitizen": "2.9.5",
"cz-conventional-changelog": "1.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.12.0",
"json-loader": "0.5.4",
"mobx": "^4.2.0",
"mocha": "3.1.2",
"nyc": "10.1.2",
"rimraf": "2.5.4",
"semantic-release": "^15.13.2"
}
}