-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
63
64
65
66
67
68
{
"name": "maths-vector",
"version": "1.1.0",
"main": "dist/vector.cjs.js",
"module": "dist/vector.esm.js",
"browser": "dist/vector.umd.js",
"author": "boycgit",
"repository": {
"type": "git",
"url": "git+https://github.com/boycgit/maths-vector.git"
},
"size-limit": [
{
"limit": "9 KB",
"path": "dist/vector.cjs.js"
}
],
"scripts": {
"start": "docsify start ./docs",
"deploy": "now -p",
"size": "./node_modules/.bin/size-limit",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"build:normal": "./node_modules/.bin/rollup -c",
"build:rollup": "./node_modules/.bin/rollup --config rollup.config.production.js",
"build:prod": "npm run build:normal && npm run build:rollup",
"dev": "./node_modules/.bin/rollup -c -w",
"test": "npm run build:normal && ./node_modules/.bin/jest && npm run size",
"doc": "jsdoc -c jsdoc.json",
"doc:md": "jsdoc2md src/*.js > docs/api.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0",
"release": "standard-version && git push --follow-tags origin master && npm publish"
},
"docsify": {
"config": {
"basePath": "https://boycgit.github.io/maths-vector/",
"loadSidebar": true,
"loadNavbar": true,
"coverpage": true,
"name": "maths-vector",
"repo": "https: //github.com/boycgit/maths-vector"
}
},
"dependencies": {
"big.js": "^5.1.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.4.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"chance": "^1.0.16",
"coveralls": "^3.0.2",
"decimal.js": "^10.0.1",
"docsify-cli": "^4.2.1",
"jest": "^23.4.1",
"rollup": "^0.60.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-uglify": "^4.0.0",
"size-limit": "^0.18.5"
},
"files": [
"dist"
]
}