-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "@createjs/core",
"version": "2.0.0-beta.4",
"description": "Core files for the CreateJS suite of JavaScript libraries.",
"keywords": [
"createjs",
"easeljs",
"tweenjs",
"soundjs",
"preloadjs",
"event",
"eventdispatcher",
"ticker",
"gskinner"
],
"homepage": "https://createjs.com",
"url": "https://npmjs.com/package/@createjs/core",
"bugs": "https://github.com/createjs/core/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)",
"Patrick McGuckin <[email protected]> (https://github.com/tehvgg)"
],
"main": "dist/core.cjs.js",
"module": "src/main.js",
"logo": "assets/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/createjs/core.git"
},
"scripts": {
"test": "cd node_modules/@createjs/build && npm test",
"dev": "cd node_modules/@createjs/build && gulp dev --format=iife",
"build": "cd node_modules/@createjs/build && gulp build",
"docs": "cd node_modules/@createjs/docs && npm run gen"
},
"devDependencies": {
"@createjs/build": "2.0.0-beta.4",
"@createjs/easeljs": "2.0.0-beta.4"
},
"engine": "node >= 8.9.0",
"npmName": "createjs-core",
"npmFileMap": [
{
"basePath": "dist",
"files": [
"**/*"
]
}
],
"directories": {
"doc": "docs",
"lib": "dist",
"test": "tests"
}
}