-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.06 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
{
"homepage": "https://github.com/Waxweazler/tjs",
"name": "@telekom/tjs",
"version": "1.0.3",
"config": {
"src": "src/t.js",
"target": "dist/t.min.js"
},
"scripts": {
"build": "npm run uglifyjs && npm run replace-name && npm run replace-version && npm run replace-homepage",
"test": "karma start",
"uglifyjs": "uglifyjs %npm_package_config_src% --comments /^!/ --mangle --output %npm_package_config_target%",
"replace-homepage": "replace-in-file @homepage@ %npm_package_homepage% %npm_package_config_target%",
"replace-name": "replace-in-file @name@ %npm_package_name% %npm_package_config_target%",
"replace-version": "replace-in-file @version@ %npm_package_version% %npm_package_config_target%"
},
"devDependencies": {
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^2.0.1",
"karma-jquery": "^0.2.4",
"karma-ie-launcher": "^1.0.0",
"karma-verbose-reporter": "^0.0.6",
"puppeteer": "^1.19.0",
"replace-in-file": "^4.1.3",
"uglify-js": "^3.6.0"
}
}