-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
77 lines (77 loc) · 2.51 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.16.1",
"description": "2d transformation matrix functions written in ES6 syntax. Tree shaking ready!",
"main": "./build-commonjs/index.js",
"typings": "./src/transformation-matrix.d.ts",
"module": "./src/index.js",
"jsnext:main": "./src/index.js",
"unpkg": "./build-umd/transformation-matrix.min.js",
"files": [
"README.md",
"build-commonjs",
"build-umd",
"src",
"tests",
"transformation-matrix.d.ts",
"babel.config.js"
],
"scripts": {
"build": "npm run docs:api && npm run build:parser && npm run build:lib",
"test": "npm run test:standard && npm run test:coverage && npm run test:typescript",
"clean": "del build-* coverage",
"build:parser": "peggy --format es -o src/fromTransformAttribute.autogenerated.js src/fromTransformAttribute.peggy",
"build:lib": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd-min",
"build:commonjs": "babel src --out-dir build-commonjs",
"build:umd": "webpack --config ./webpack-umd.config.js",
"build:umd-min": "webpack --config ./webpack-umd.config.js --env minimize",
"test:jest": "jest",
"test:coverage": "jest --coverage",
"test:standard": "standard",
"test:typescript": "tsc --strict src/*.ts",
"docs:api": "jsdoc2md --template docs/templates/api.hbs --example-lang js --heading-depth 2 src/*.js > docs/api.md"
},
"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.23.9",
"@babel/core": "^7.23.9",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@types/jest": "^29.5.12",
"babel-loader": "^9.1.3",
"del-cli": "^5.1.0",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^8.0.1",
"peggy": "^3.0.2",
"standard": "^17.1.0",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4"
},
"standard": {
"ignore": [
"src/*.autogenerated.js",
"example.js"
]
},
"funding": "https://github.com/sponsors/chrvadala"
}