-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.45 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.45 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-smitty",
"amdName": "ReactSmitty",
"version": "2.0.8",
"description": "React bindings for smitty",
"jsnext:main": "dist/react-smitty.es.js",
"module": "dist/react-smitty.es.js",
"main": "dist/react-smitty.js",
"umd:main": "dist/react-smitty.umd.js",
"files": [
"src",
"test",
"dist"
],
"scripts": {
"test": "standard src test && node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"build": "npm-run-all clean -p rollup -p minify:* -s size",
"clean": "rimraf dist && mkdirp dist",
"rollup": "rollup -c",
"minify:cjs": "uglifyjs $npm_package_main -cm -o $npm_package_main -p relative --in-source-map ${npm_package_main}.map --source-map ${npm_package_main}.map",
"minify:umd": "uglifyjs $npm_package_umd_main -cm -o $npm_package_umd_main -p relative --in-source-map ${npm_package_umd_main}.map --source-map ${npm_package_umd_main}.map",
"size": "echo \"Gzipped Size: $(strip-json-comments --no-whitespace $npm_package_main | gzip-size)\"",
"prepublish": "npm run build"
},
"dependencies": {
"mitt": "^1.1.2"
},
"peerDependencies": {
"react": "^15.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^2.1.0",
"expect": "^1.20.2",
"gzip-size-cli": "^2.0.0",
"jsdom": "^9.12.0",
"mkdirp": "^0.5.1",
"mitt": "^1.1.2",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.2",
"pretty-bytes-cli": "^2.0.0",
"react": "^15.5.4",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"smitty": "^2.0.2",
"standard": "^10.0.2",
"strip-json-comments-cli": "^1.0.1",
"uglify-js": "^2.8.22",
"undom": "latest"
},
"author": "Kye Hohenberger",
"homepage": "https://github.com/tkh44/react-smitty#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tkh44/react-smitty.git"
},
"keywords": [
"react",
"smitty",
"flux",
"mitt"
],
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"eslintConfig": {
"extends": "standard"
},
"standard": {
"ignore": [
"/dist/"
]
},
"directories": {
"test": "test"
},
"bugs": {
"url": "https://github.com/tkh44/react-smitty/issues"
}
}