This repository was archived by the owner on May 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.02 KB
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
{
"name": "@segmentstream/utils",
"version": "1.0.15",
"description": "SegmentStream Utils",
"scripts": {
"lint": "standard",
"lint-fix": "standard --fix",
"test": "npm run prepare-tests && npm run browserify-tests && karma start",
"dist": "babel ./src --out-dir ./dist && cp ./{package.json,README.md,.npmrc} dist",
"link": "npm run dist && cd ./dist && npm link",
"publish": "npm run dist && cd ./dist && npm publish",
"prepare-tests": "rm -rf ./build && mkdir ./build",
"browserify-tests": "browserify test/index.test.js -t babelify --debug | exorcist --base=./build build/tests.js.map > build/tests.js"
},
"pre-commit": [
"lint",
"test"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/segmentstream/utils.git"
},
"author": "Driveback LLC",
"license": "ISC",
"bugs": {
"url": "https://github.com/segmentstream/utils/issues"
},
"homepage": "https://github.com/segmentstream/utils#readme",
"dependencies": {
"js-cookie": "^2.2.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.2",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"chai": "^4.2.0",
"core-js": "^3.1.4",
"exorcist": "^1.0.1",
"karma": "^4.2.0",
"karma-babel-preprocessor": "^8.0.1",
"karma-browserify": "^6.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^6.2.0",
"pre-commit": "^1.2.2",
"puppeteer": "^1.19.0",
"standard": "^13.1.0"
},
"keywords": [
"utils"
],
"mocha": {
"exit": true,
"recursive": true,
"require": [
"@babel/register"
]
},
"standard": {
"envs": [
"mocha"
],
"ignore": [
"dist/*",
"build/*"
],
"parser": "babel-eslint"
}
}