forked from chrvadala/transformation-matrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.54 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
69
70
71
72
73
74
75
76
77
{
"name": "transformation-matrix",
"version": "2.1.1",
"description": "2d transformation matrix functions written in ES6 syntax. Tree shaking ready!",
"main": "./build-commonjs/index.js",
"typings": "transformation-matrix.d.ts",
"module": "./src/index.js",
"jsnext:main": "./src/index.js",
"unpkg": "./build-umd/transformation-matrix.min.js",
"files": [
"*.md",
"build-*",
"src",
"tests",
"transformation-matrix.d.ts",
"babel.config.js"
],
"scripts": {
"coverage": "jest --coverage --coveragePathIgnorePatterns autogenerated",
"coveralls": "jest --coverage --coveragePathIgnorePatterns autogenerated --coverageReporters=text-lcov | coveralls",
"test:ci": "npm-run-all standard test build coveralls",
"test": "jest",
"build-commonjs": "babel src --out-dir build-commonjs",
"build-docs": "jsdoc2md --partial disclaimer.hbs --template README.template.hbs src/*.js > README.md",
"build-umd-min": "webpack --config ./webpack-umd.config.js --env.minimize",
"build-umd": "webpack --config ./webpack-umd.config.js",
"build-parser": "pegjs -o src/fromTransformAttribute.autogenerated.js --format es src/fromTransformAttribute.pegjs",
"clean": "del build-*",
"version": "npm-run-all clean test build add-readme-to-vcs",
"build": "npm-run-all clean build-commonjs build-docs build-umd build-umd-min build-parser",
"add-readme-to-vcs": "git add -A README.md",
"standard": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrvadala/transformation-matrix.git"
},
"keywords": [
"transformation-matrix",
"2d-transformations",
"three-shaking",
"scale",
"zoom",
"translate",
"transform"
],
"author": "chrvadala",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrvadala/transformation-matrix/issues"
},
"homepage": "https://github.com/chrvadala/transformation-matrix#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.15",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.5",
"del-cli": "^2.0.0",
"jest": "^24.8.0",
"jsdoc-to-markdown": "^5.0.0",
"npm-run-all": "^4.1.5",
"pegjs": "0.11.0-master.30f3260",
"standard": "^13.1.0",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"standard": {
"ignore": [
"src/*.autogenerated.js",
"example.js"
]
}
}