-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.92 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.92 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "unity-utils",
"version": "1.0.4",
"description": "Useful utility functions for the Unity team.",
"main": "dist/index.js",
"scripts": {
"build": "npm run test && npm run clean && ./node_modules/.bin/babel src --out-dir dist",
"build:watch": "npm run clean && ./node_modules/.bin/babel src --out-dir dist -s -w",
"clean": "./node_modules/.bin/rimraf dist",
"commit": "./node_modules/.bin/git-cz",
"coverage:report": "./node_modules/.bin/nyc report",
"coverage:send": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls",
"lint": "./node_modules/.bin/eslint --ignore-path=.gitignore --fix ./src",
"lint-prod": "NODE_ENV='production' npm run lint",
"version": " ./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepublish": "npm run build",
"precommit": "npm test",
"commitmsg": "./node_modules/.bin/validate-commit-msg",
"test": "npm run lint-prod && ./node_modules/.bin/nyc ./node_modules/.bin/ava --verbose",
"test:watch": "npm run lint && ./node_modules/.bin/nyc ./node_modules/.bin/ava --verbose --watch",
"release:patch": "npm run commit && npm version patch && git push upstream master --tags && npm publish",
"release:minor": "npm run commit && npm version minor && git push upstream master --tags && npm publish",
"release:major": "npm run commit && npm version major && git push upstream master --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auru/unity-utils.git"
},
"author": "TimeRaider (vitaliy@blinovskov.com)",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"homepage": "https://github.com/auru/unity-utils#readme",
"bugs": {
"url": "https://github.com/auru/unity-utils/issues"
},
"keywords": [
"unity",
"util",
"utils",
"utility",
"utilities"
],
"engines": {
"node": ">=4"
},
"dependencies": {
"path": "^0.12.7"
},
"devDependencies": {
"ava": "^0.18.1",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "^6.16.0",
"babel-register": "^6.16.3",
"commitizen": "^2.8.6",
"conventional-changelog-cli": "^1.2.0",
"coveralls": "^2.11.14",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.7.1",
"eslint-plugin-ava": "^4.0.0",
"husky": "^0.12.0",
"nyc": "^10.0.0",
"rimraf": "^2.5.4",
"validate-commit-msg": "^2.8.2"
},
"ava": {
"files": [
"test/**/*.spec.js"
],
"source": [
"src/*.js"
],
"concurrency": 4,
"failFast": false,
"tap": false,
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}