-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
62 lines (62 loc) · 1.81 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
53
54
55
56
57
58
59
60
61
62
{
"name": "kinematics",
"description": "Robot kinematics library",
"main": "dist/index.js",
"version": "0.0.0-semantic-release-controlled",
"scripts": {
"commit": "git-cz",
"test": "./node_modules/.bin/mocha ./test/*.test.js --compilers js:babel-register",
"watch:test": "npm t -- -w",
"eslint": "./node_modules/.bin/eslint './src/*.js' './test/*.js' --fix",
"build": "babel --out-dir dist src",
"cover": "nyc npm t",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"check-coverage": "nyc check-coverage --functions 100",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/glumb/kinematics.git"
},
"keywords": [
"robotics",
"inverse kinematics",
"kinematcis"
],
"files": [
"dist"
],
"author": "Maximilian Beck <[email protected]> (http://glumb.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/glumb/kinematics/issues"
},
"homepage": "https://github.com/glumb/kinematics#readme",
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-2": "6.18.0",
"babel-register": "6.18.0",
"chai": "3.5.0",
"codecov.io": "0.1.6",
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"eslint": "3.10.0",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "6.6.0",
"istanbul": "0.4.5",
"mocha": "3.1.2",
"nyc": "8.4.0",
"semantic-release": "^4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}