-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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
{
"name": "@ceddl/ceddl-polyfill",
"version": "0.9.10",
"description": "customer experience digital data layer polyfill. Bridging the gap between the 2015 ceddl spec and the browsers",
"repository": {
"type": "git",
"url": "git://github.com/ceddl/ceddl-polyfill"
},
"license": "MIT",
"author": {
"name": "Roland Broekema"
},
"main": "/dist/index.js",
"module": "/src/index.js",
"jsnext:main": "/src/index.js",
"types": "index.d.ts",
"files": [
"src",
"lib",
"dist",
"index.d.ts"
],
"scripts": {
"link": "npm link @ceddl/ceddl-polyfill",
"dev": "copyfiles -u 4 node_modules/@ceddl/ceddl-aditional-inputs/dist/*.js demo/js/aditional-inputs/ && node demo/app.js",
"build": "rollup -c && node_modules/uglify-js/bin/uglifyjs -o dist/index.min.js -- dist/index.js",
"test": "rollup -c && node_modules/karma/bin/karma start karma.conf.js",
"lint": "node_modules/eslint/bin/eslint.js src/**"
},
"devDependencies": {
"@ceddl/ceddl-aditional-inputs": "^0.9.3",
"@rollup/plugin-typescript": "^8.3.0",
"copyfiles": "^2.4.1",
"eslint": "^7.2.0",
"glob": "7.2.0",
"jasmine": "^3.10.0",
"karma": "^6.3.6",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-rollup-preprocessor": "^7.0.7",
"karma-sinon": "^1.0.5",
"node-static": "^0.7.11",
"nyc": "^15.1.0",
"rollup": "^2.59.0",
"sinon": "^11.1.2",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"uglify-js": "^3.14.2"
},
"dependencies": {}
}