-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.18 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
{
"name": "@createjs/easeljs",
"version": "2.0.0-beta.2",
"description": "The Easel JavaScript library provides a full, hierarchical display list, a core interaction model, and helper classes to make working with the HTML5 Canvas element much easier. Part of the CreateJS suite of libraries.",
"keywords": [
"html5",
"webgl",
"canvas",
"easeljs",
"createjs",
"gskinner",
"flash",
"animate",
"spritesheet"
],
"homepage": "https://createjs.com/easeljs",
"url": "https://npmjs.com/package/@createjs/easeljs",
"bugs": "https://github.com/createjs/easeljs/issues",
"license": "MIT",
"contributors": [
"Grant Skinner <[email protected]> (https://github.com/gskinner)",
"Lanny McNie <[email protected]> (https://github.com/lannymcnie)",
"Wes Gorgichuk <[email protected]> (https://github.com/wdamien)",
"Mike Chambers <> (https://github.com/mikechambers)",
"Patrick McGuckin <[email protected]> (https://github.com/tehvgg)",
"David Gillen <[email protected]> (https://github.com/davidhgillen)"
],
"main": "dist/easeljs.common.js",
"module": "dist/easeljs.module.js",
"browser": "dist/easeljs.min.js",
"logo": "assets/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/createjs/easeljs.git"
},
"npmName": "easeljs",
"npmFileMap": [
{
"basePath": "dist",
"files": [
"**/*"
]
}
],
"directories": {
"doc": "docs",
"example": "examples",
"lib": "dist",
"test": "tests"
},
"scripts": {
"test": "jest -c ./tests/jest.config.js",
"lint": "cd node_modules/@createjs/build && gulp lint",
"dev": "cd node_modules/@createjs/build && gulp dev --format=global",
"build": "cd node_modules/@createjs/build && gulp build",
"docs": "cd node_modules/@createjs/docs && npm run gen"
},
"dependencies": {
"@createjs/core": "^2.0.0-beta.1",
"@createjs/tweenjs": "^2.0.0-beta.1"
},
"devDependencies": {
"@createjs/build": "github:gamesdonequick/createjs-build#383580a5fa15c0cebb9b7bc956df3ae197a7d217",
"babel-jest": "^22.4.3",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"jest": "^22.4.3"
},
"engine": "node >= 8.9.4"
}