-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "rematrix",
"version": "0.7.2",
"description": "Matrix transformations made easy",
"main": "dist/rematrix.js",
"module": "dist/rematrix.es.js",
"jsnext:main": "dist/rematrix.es.js",
"types": "src/index.d.ts",
"files": [
"dist",
"src/index.d.ts"
],
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "npm run bundle && npm run bundle:min",
"bundle": "rollup -c build/rollup.conf.js",
"bundle:min": "rollup -c build/rollup.conf.min.js",
"lint": "eslint src test",
"pretest": "rm -rf .ignore/coverage/**/ && npm run lint",
"test": "karma start test/karma.conf.js",
"testing": "cross-env COVERAGE=true npm test -- --no-single-run",
"coverage": "cross-env COVERAGE=true npm test"
},
"repository": "jlmakes/rematrix",
"keywords": [
"css",
"matrix",
"transform"
],
"bugs": {
"url": "https://github.com/jlmakes/rematrix/issues"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^2.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.0",
"karma-rollup-preprocessor": "^7.0.3",
"karma-sauce-launcher": "^2.0.2",
"karma-sinon-chai": "^2.0.2",
"mocha": "^7.0.1",
"rollup": "^1.31.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^7.3.2",
"sinon-chai": "^3.4.0"
},
"author": "Julian Lloyd <rematrix@jlmakes.com>",
"license": "MIT"
}