-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.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
{
"name": "unitaryjs",
"version": "0.1.2",
"description": "Canvas Library",
"main": "./dist/unitary.min.js",
"scripts": {
"preversion": "yarn-or-npm test",
"version": "yarn-or-npm run build && yarn-or-npm run build2 && gulp && git add -A",
"postversion": "git push && git push --tags",
"pretest": "rollup src/unitary.js -c -o dist/onlyunitary.js --name Unitary",
"test": "jest",
"precoverage": "rollup src/unitary.js -c -o dist/onlyunitary.js --name Unitary",
"coverage": "jest --coverage",
"postcoverage": "rm dist/onlyunitary.js",
"build": "rollup src/main.js -c -o dist/unitary.js --name Unitary",
"build2": "rollup src/canvas.js -c -o dist/canvas.js --name Canvas",
"compile": "gulp minify"
},
"files": [
"CHANGELOG.md",
"LICENCE",
"README.md",
"package.json",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pandanoir/unitaryjs.git"
},
"keywords": [
"canvas",
"library",
"unitaryjs"
],
"devDependencies": {
"closure-gun": "^0.1.12",
"google-closure-compiler": "^20181210.0.0",
"gulp": "^4.0.0",
"gulp-gzip": "^1.4.2",
"gulp-rename": "^1.4.0",
"jest": "^23.6.0",
"mocha": "^5.2.0",
"rollup": "^1.0.1",
"rollup-plugin-json": "^3.1.0",
"yarn-or-npm": "^2.0.4"
},
"author": "Naoto Ikuno <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pandanoir/unitaryjs/issues"
},
"homepage": "https://github.com/pandanoir/unitaryjs"
}