This repository has been archived by the owner on Feb 4, 2022. It is now read-only.
forked from bigdatr/proto-stampy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.31 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
{
"name": "@blueflag/proto-stampy",
"version": "0.1.2",
"description": "The new and improved proto-stampy",
"repository": {
"type": "git",
"url": "[email protected]:blueflag/proto-stampy.git"
},
"license": "MIT",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib --copy-files",
"build-examples": "cd example && yarn install && yarn run build && cd -",
"coverage": "blueflag-test coverage",
"deploy-to-gh-pages": "yarn run build && yarn run build-examples && yarn run docs && node scripts/publish.js",
"dev": "babel src -d lib --watch",
"docs": "jsdoc -c jsdoc.json",
"flow": "blueflag-test flow",
"lint": "blueflag-test lint",
"prepublish": "yarn run build",
"test": "blueflag-test test",
"test-all": "yarn lint && yarn flow && yarn coverage",
"view-coverage": "yarn run coverage; open ./coverage/lcov-report/index.html",
"watch": "yarn run dev"
},
"devDependencies": {
"app-module-path": "^2.0.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-polyfill": "^6.23.0",
"babel-preset-blueflag": "^0.6.0",
"babel-register": "^6.23.0",
"babel-runtime": "^6.23.0",
"cheerio": "^0.22.0",
"debounce": "^1.1.0",
"enzyme": "^2.5.1",
"eslint": "^4.9.0",
"eslint-config-blueflag": "^0.6.1",
"gh-pages": "^0.11.0",
"git-url-parse": "^6.0.1",
"immutable": "^3.8.1",
"jsdoc": "^3.4.2",
"jsdoc-babel": "^0.2.1",
"jsdoc-react-proptypes": "^1.0.2",
"jsdom": "^9.8.3",
"jsdonk": "^0.5.0",
"prop-types": "^15.5.8",
"proto-babel-plugin-extract-flow-types": "git+ssh://[email protected]/blueflag/proto-babel-plugin-extract-flow-types.git#v0.1",
"proto-blueflag-test": "git+ssh://[email protected]/blueflag/proto-blueflag-test.git#v0.8.0",
"proxyquire": "^1.7.11",
"react": "^15.3.2",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.3.2",
"react-modal": "^2.2.4",
"react-select": "^1.0.0-rc.4",
"sinon": "^1.17.6"
},
"peerDependencies": {
"debounce": "^1.1.0",
"immutable": "^3.8.1",
"react": "^15.x.x",
"react-modal": "^2.2.4"
},
"dependencies": {
"classnames": "^2.2.5"
},
"main": "lib/index.js",
"engines": {
"npm": "^3.0.0"
}
}