-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.78 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
{
"name": "@madkudu/madkudu.js",
"author": "MadKudu <engineering@madkudu.com>",
"version": "1.7.0",
"license": "SEE LICENSE IN LICENSE",
"description": "The MadKudu javascript library",
"keywords": [
"madkudu",
"madkudu.js"
],
"repository": {
"url": "https://github.com/MadKudu/madkudu.js.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/MadKudu/madkudu.js/issues"
},
"homepage": "https://github.com/MadKudu/madkudu.js#readme",
"engines": {
"node": "10.16.3",
"npm": "6.9.0"
},
"main": "index.js",
"scripts": {
"start": "pm2 start process.config.js",
"poststart": "pm2 logs",
"dev": "pm2-dev start app.js --ignore 'dist'",
"lint": "eslint lib/ && eslint test/ && eslint utils/",
"compile": "npm run lint && node utils/run_compiler",
"test": "npm run test-unit && npm run test-functional && npm run test-browser",
"test-unit": "NODE_ENV=test TESTS=unit npm run karma",
"test-compiled": "NODE_ENV=test TESTS=compiled npm run karma",
"test-functional": "npm run compile && npm run test-compiled && npm run test-snippet && npm run test-segment",
"test-jquery": "NODE_ENV=test TESTS=jquery npm run karma",
"test-require": "NODE_ENV=test TESTS=require npm run karma",
"test-segment": "NODE_ENV=test TESTS=segment npm run karma",
"test-snippet": "NODE_ENV=test TESTS=snippet npm run karma",
"test-stripe": "NODE_ENV=test TESTS=stripe npm run karma",
"test-browser": "NODE_ENV=test TEST=browser node ./test/browser/index.js",
"karma": "karma start karma.conf.js"
},
"dependencies": {
"@babel/core": "7.10.4",
"@babel/preset-env": "7.10.4",
"@ndhoule/clone": "1.0.0",
"@ndhoule/defaults": "2.0.1",
"@ndhoule/each": "2.0.1",
"@ndhoule/extend": "2.0.0",
"@ndhoule/includes": "2.0.1",
"@segment/canonical": "1.0.0",
"@segment/is-meta": "1.0.0",
"@segment/isodate-traverse": "1.1.0",
"@segment/prevent-default": "1.0.0",
"@segment/protocol": "1.0.0",
"@segment/send-json": "3.0.0",
"@segment/store": "1.3.20",
"@segment/top-domain": "3.0.0",
"babel-loader": "8.1.0",
"bind-all": "1.0.0",
"component-cookie": "1.1.3",
"component-emitter": "1.2.1",
"component-event": "0.2.0",
"component-type": "1.2.1",
"component-url": "0.2.1",
"css-loader": "3.6.0",
"debug": "0.7.4",
"eslint-loader": "4.0.2",
"html-loader": "1.1.0",
"imports-loader": "1.1.0",
"inherits": "2.0.3",
"is": "3.2.1",
"jquery": "^3.7.0",
"json3": "3.3.2",
"less": "3.0.4",
"less-loader": "6.2.0",
"loader-utils": "2.0.0",
"lodash": "4.17.15",
"next-tick": "1.0.0",
"proclaim": "3.5.0",
"pug": "2.0.4",
"pug-loader": "2.4.0",
"q": "1.5.1",
"query-string": "5.0.1",
"spark-md5": "3.0.0",
"style-loader": "1.2.1",
"terser-webpack-plugin": "3.0.6",
"uuid": "3.1.0",
"webpack": "4.43.0"
},
"devDependencies": {
"babel-plugin-istanbul": "4.1.5",
"chai": "4.1.2",
"dotenv": "^16.0.3",
"eslint": "7.4.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"express": "4.16.2",
"karma": "2.0.2",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.2",
"karma-firefox-launcher": "1.1.0",
"karma-mocha": "1.3.0",
"karma-safari-launcher": "1.0.0",
"karma-sauce-launcher": "^1.2.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "3.0.0",
"mocha": "4.0.1",
"object.observe": "0.2.6",
"observe": "1.4.1",
"sinon": "4.1.2",
"wdio-mocha-framework": "0.5.13",
"wdio-selenium-standalone-service": "0.0.10",
"webdriverio": "4.12.0"
}
}