-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.62 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
{
"name": "pure-stamp",
"version": "0.2.1",
"description": "Creates an optimized pure compose function with dependencies tacked onto it for easy lib propagation.",
"main": "lib/index.js",
"scripts": {
"start": "babel src/lib -d lib --watch",
"prebuild": "rimraf build",
"build": "babel src/lib -d lib",
"predoc": "rimraf doc",
"doc": "esdoc -c ./esdoc.json",
"prerelease": "npm run build",
"release": "npm version patch && npm publish",
"postrelease": "npm run release-doc",
"prerelease-doc": "npm run doc",
"release-doc": "git subtree push --prefix doc origin gh-pages",
"postrelease-doc": "git commit -am \"doc-release\" && git push --follow-tags"
},
"dependencies": {
"lodash": "^4.17.1",
"react-stamp": "latest"
},
"devDependencies": {
"babel-cli": "latest",
"babel-core": "latest",
"babel-eslint": "latest",
"babel-loader": "latest",
"babel-plugin-react-transform": "latest",
"babel-plugin-transform-runtime": "latest",
"babel-preset-es2015": "latest",
"babel-preset-react": "latest",
"babel-preset-stage-0": "latest",
"esdoc": "latest",
"esdoc-es7-plugin": "latest",
"eslint": "latest",
"eslint-plugin-babel": "latest",
"eslint-plugin-react": "latest",
"rimraf": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noderaider/pure-stamp.git"
},
"author": "Cole Chamberlain <[email protected]> (https://github.com/cchamberlain)",
"license": "MIT",
"bugs": {
"url": "https://github.com/noderaider/pure-stamp/issues"
},
"homepage": "https://pure-stamp.js.org"
}