-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "@segment/snippet",
"author": "Segment.io <friends@segment.com>",
"version": "5.2.1",
"repository": "git://github.com/segmentio/snippet.git",
"description": "Templating methods for rendering the analytics.js snippet.",
"main": "lib/index.js",
"license": "MIT",
"typings": "./types.d.ts",
"files": [
"dist/",
"lib/",
"types.d.ts"
],
"scripts": {
"build": "rm -rf ./dist && make build",
"test": "make test",
"fixture": "make fixture",
"lint": "make lint",
"example": "cd ./example && yarn start",
"e2e-tests": "yarn jest --runTestsByPath --forceExit e2e-tests/*",
"e2e": "yarn build && start-server-and-test example http://localhost:8080 e2e-tests"
},
"dependencies": {
"@ndhoule/map": "^2.0.1"
},
"devDependencies": {
"@segment/clear-env": "^2.0.3",
"@segment/eslint-config": "^3.4.0",
"@types/jest": "^27.0.1",
"browserify": "^13.1.0",
"eslint": "^4.18.2",
"eslint-plugin-mocha": "^2.2.0",
"eslint-plugin-require-path-exists": "^1.1.5",
"istanbul": "^0.4.5",
"jest": "^27.2.0",
"karma": "~2.0.0",
"karma-browserify": "^5.0.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^1.0.0",
"karma-junit-reporter": "^1.0.0",
"karma-mocha": "1.0.1",
"karma-sauce-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"lodash": "^4.15.0",
"matcha": "^0.7.0",
"mkdirp": "^0.5.1",
"mocha": "~1.12.1",
"playwright-chromium": "^1.32.3",
"sinon": "^1.17.5",
"start-server-and-test": "^2.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3",
"uglify-js": "^2.8.29",
"watchify": "^3.11.1",
"webdriverio": "^7.12.5"
},
"packageManager": "yarn@3.6.4"
}