-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "universal-utils",
"version": "1.0.50",
"description": "functional, event, storage, cache, and other utilities",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist; cp ./src/cache/package.json ./dist/cache/package.json;",
"deploy": "npm run build; git add --all .; git commit -am 'new build'; npm version patch; git push origin HEAD; npm publish;",
"watch": "babel src --out-dir dist -w; cp ./src/cache/package.json ./dist/cache/package.json;",
"docs": "esdoc -c esdoc.json",
"docs:surge": "npm run docs; surge dist/esdoc;"
},
"repository": {
"type": "git",
"url": "git://github.com/matthiasak/universal-utils.git"
},
"author": "Matt Keas (@matthiasak)",
"license": "MIT",
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"optionalDependencies": {
"universal-utils-vdom-components": "0.x",
"redis": "2.x"
},
"dependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-preset-react": "^6.11.1",
"isomorphic-fetch": "latest"
},
"devDependencies": {
"babel-cli": "6.x",
"babel-core": "6.x",
"babel-polyfill": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-react": "6.x",
"babel-preset-stage-0": "6.x",
"esdoc": "0.x",
"esdoc-es7-plugin": "0.x",
"surge": "0.x"
}
}