-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.87 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
{
"name": "yax",
"version": "0.4.2",
"description": "Yet another store using redux. (Inspired by vuex and dva)",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es",
"src"
],
"scripts": {
"prebuild": "rm -rf es lib",
"lint": "eslint src test",
"build:lib": "cross-env BABEL_ENV=cjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "npm run build:lib && npm run build:es",
"test": "cross-env BABEL_ENV=test nyc mocha --no-timeouts",
"prepare": "npm run build",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/yax.git"
},
"keywords": [
"csm",
"redux",
"react",
"store",
"state"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/yax/issues"
},
"homepage": "https://github.com/d-band/yax#readme",
"dependencies": {
"@babel/runtime": "^7.8.4",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^6.0.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"expect": "^25.1.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0"
}
}