-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.05 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
{
"authors": [
"Karl Mikkelsen <karl@karlmikko.com> (https://github.com/karlmikko)"
],
"dependencies": {},
"description": "Composable redux reducers",
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "^5.6.18",
"babel-eslint": "^4.1.0",
"babel-loader": "^5.1.4",
"eslint": "^1.2.1",
"eslint-config-airbnb": "0.1.0",
"eslint-plugin-react": "3.5.0",
"expect": "^1.8.0",
"isparta": "^3.0.3",
"mocha": "^2.2.5",
"rimraf": "^2.3.4",
"webpack": "^1.9.6"
},
"directories": {},
"jsnext:main": "src/index.js",
"keywords": [
"functional",
"hot",
"immutable",
"reducer",
"redux",
"state"
],
"license": "MIT",
"main": "lib/index.js",
"maintainers": [
{
"name": "karlmikko",
"email": "karl@karlmikko.com"
}
],
"name": "tiny-duck",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"npmName": "tiny-duck",
"repository": {
"type": "git",
"url": "git+https://github.com/lockedon/tiny-duck.git"
},
"scripts": {
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/tiny-duck.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/tiny-duck.min.js --config webpack.config.production.js",
"example": "webpack example/example.js example/example.es5.js --config webpack.config.development.js && node example/example.es5.js",
"check": "npm run lint && npm run test",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build",
"preversion": "npm run clean && npm run check",
"test": "mocha --compilers js:babel/register --recursive",
"test:cov": "babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive",
"test:watch": "npm test -- --watch",
"version": "npm run build"
},
"version": "1.1.1"
}