-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.88 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.88 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
{
"name": "ts-utils",
"version": "6.1.0",
"repository": {
"type": "git",
"url": "https://github.com/tsigel/ts-utils.git"
},
"scripts": {
"build": "npm run clean && npm run compile && npm run browserify && npm run uglify",
"clean": "rm -rf ./dist ./coverage ./*.js ./*.map ./*.d.ts src/*.js src/*.d.ts src/*.map test/*.js test/*.map",
"compile": "node_modules/typescript/bin/tsc -p ./ && node_modules/typescript/bin/tsc -p ./test && node_modules/typescript/bin/tsc ./karma.conf.ts -m commonjs",
"browserify": "node_modules/.bin/ts-bundler --out ./dist/ts-utils.js --file index.ts --main index --standalone ts-utils",
"uglify": "node_modules/.bin/uglifyjs ./dist/ts-utils.js -o ./dist/ts-utils.min.js",
"pretest": "npm run compile",
"prepublush": "npm run test && npm run build",
"postversion": "git push origin HEAD && git push --tags && npm run build && npm publish",
"test": "./node_modules/.bin/istanbul cover _mocha && node_modules/karma/bin/karma start",
"test-dev": "npm run pretest && ./node_modules/.bin/istanbul cover _mocha",
"test-debug": "node_modules/karma/bin/karma start --singleRun false --autoWatch true"
},
"description": "Some utils for array irerate",
"main": "dist/ts-utils.min.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"devDependencies": {
"@types/expect.js": "^0.3.29",
"@types/mocha": "^2.2.41",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"karma": "^6.4.1",
"karma-commonjs": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^3.4.2",
"phantomjs": "^2.1.7",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.14",
"ts-bundler": "0.0.2",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"uglify-js": "^3.0.25"
},
"author": "Daniil Tsigelnitskiy",
"license": "ISC",
"dependencies": {}
}