forked from skynode/groundwork.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.09 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "groundwork.js",
"version": "1.5.5",
"description": "The Groundwork Platform JavaScript Client",
"main": "lib/groundwork.js",
"scripts": {
"deploy": "make deploy",
"docs": "make docs",
"example:modules": "make example-modules",
"example:simple": "npm start",
"lib": "make lib",
"lint": "make lint",
"lint:staged": "lint-staged",
"release": "make release",
"start": "make start",
"test": "make test",
"test:watch": "make test-watch"
},
"keywords": [
"api",
"client",
"groundwork",
"thegroundwork"
],
"repository": {
"type": "git",
"url": "https://github.com/thegroundwork/groundwork.js.git"
},
"bugs": {
"url": "https://github.com/thegroundwork/groundwork.js/issues"
},
"author": {
"name": "The Groundwork",
"url": "https://developer.thegroundwork.com/tools/groundworkjs/"
},
"contributors": [
{
"name": "Benjamin W. Smith",
"url": "https://github.com/benjaminws"
},
{
"name": "Christopher Pappas",
"url": "https://github.com/damassi"
},
{
"name": "Darren Newton",
"email": "[email protected]",
"url": "https://github.com/DarrenN"
},
{
"name": "Ernest W. Durbin III",
"url": "https://github.com/ewdurbin"
},
{
"name": "Tyler Gaw",
"email": "[email protected]",
"url": "https://github.com/tylergaw"
}
],
"homepage": "https://cdn.thegroundwork.com/groundworkjs/",
"license": "BSD-3-Clause",
"devDependencies": {
"babel-core": "6.11.4",
"babel-eslint": "6.0.0",
"babel-loader": "6.2.4",
"babel-plugin-lodash": "3.2.6",
"babel-plugin-transform-class-properties": "6.11.5",
"babel-polyfill": "6.9.1",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "6.11.6",
"bump-version": "0.5.0",
"cross-env": "2.0.0",
"esdoc": "0.4.7",
"esdoc-es7-plugin": "0.0.3",
"eslint": "1.10.3",
"eslint-config-airbnb": "5.0.1",
"eslint-plugin-react": "3.16.1",
"gzip-size-cli": "1.0.0",
"html-loader": "0.4.3",
"html-webpack-plugin": "2.22.0",
"jasmine-ajax": "3.2.0",
"jasmine-core": "2.4.1",
"karma": "1.1.2",
"karma-chrome-launcher": "1.0.1",
"karma-eslint": "2.1.0",
"karma-firefox-launcher": "1.0.0",
"karma-jasmine": "1.0.2",
"karma-jasmine-ajax": "0.1.13",
"karma-jsdom-launcher": "4.0.0",
"karma-safari-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.7.0",
"lint-staged": "3.4.1",
"pre-commit": "1.2.2",
"prettier": "1.3.1",
"pretty-bytes-cli": "1.0.0",
"webpack": "1.13.0",
"webpack-dev-server": "1.14.1",
"yargs": "4.8.1"
},
"dependencies": {
"axios": "0.9.1",
"credit-card": "2.0.0",
"currency-formatter": "1.0.0",
"lodash": "4.14.1",
"navigator.sendbeacon": "0.0.3",
"numeral": "1.5.3",
"tv4": "1.2.7"
},
"analyze": true,
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"pre-commit": "lint:staged"
}