-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.34 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.34 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
{
"name": "@devoinc/applications-data-library",
"version": "2.0.7",
"description": "Devo Applications Data Library",
"author": "Devo desa@devo.com",
"private": false,
"license": "UNLICENSED",
"homepage": "https://www.devo.com",
"engines": {
"node": "*",
"npm": "*",
"yarn": "*"
},
"bugs": {
"email": "desa@devo.com"
},
"scripts": {
"build": "cat package.json | sed '/\"build\"/d' | sed '/\"scripts\"/,/},/d' | sed '/\"devDependencies\"/,/},/d' > ./src/package.json",
"publish": "npm run build && cd src && npm publish --access public && cd ..",
"prepare": "npm run selflink",
"test": "jest --coverage --config './jest.config.js'",
"test-watch": "jest --watch --config './jest.config.js'",
"selflink": "cd node_modules && mkdir -p @devoinc && ln -snf ../../src @devoinc/applications-data-library",
"eslint": "./node_modules/.bin/eslint src/**/*.js",
"eslint-test": "./node_modules/.bin/eslint test/**/*.js",
"benchmark": "./node_modules/karma/bin/karma start test/karma.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/DevoInc/applications-data-library"
},
"dependencies": {
"@devoinc/browser-sdk": "^3.1.5",
"crypto-js": "^4.2.0",
"fetch": "^1.1.0",
"json-loader": "^0.5.7",
"moment": "^2.29.2"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"benchmark": "^2.1.4",
"eslint": "^8.13.0",
"generate-changelog": "^1.7.1",
"jest": "^23.6.0",
"jest-fetch-mock": "^2.1.1",
"karma": "3.1.4",
"karma-benchmark": "1.0.1",
"karma-benchmark-reporter": "0.1.1",
"karma-chrome-launcher": "2.2.0",
"karma-firefox-launcher": "1.3.0",
"karma-jasmine": "2.0.1",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.34",
"regenerator-runtime": "^0.13.7",
"xhr-mock": "^2.5.1"
},
"contributors": [
"Desarrollo Devo desa@devo.com"
],
"keywords": [
"widgets",
"data",
"utils"
]
}