This repository was archived by the owner on Jun 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 KB
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
{
"name": "easeljs-react",
"version": "0.2.0",
"author": "Yusuke Sakurai <kerokerokerop@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/loilo-inc/easeljs-react.git"
},
"bugs": {
"url": "https://github.com/loilo-inc/easeljs-react/issues"
},
"main": "lib/index.js",
"keywords": [
"easeljs",
"createjs",
"react",
"react-reconciler"
],
"types": [
"index.d.ts"
],
"license": "MIT",
"scripts": {
"start": "npm run build2 && serve .",
"build": "npm run build-ts",
"lib": "tsc -p ./tsconfig.lib.json",
"build2": "npm run build && npm run browserify",
"lint": "tslint src/**/*.ts -p ./tslint.json",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"browserify": "browserify ./dist/example/index.js --debug -o ./public/dist/index.js",
"watchify": "watchify ./dist/example/index.js --verbose --debug -t [browserify-shim] -o ./public/dist/index.js",
"test": "jest --forceExit",
"watch": "parallelshell 'chokidar \"src/**.{ts,js,jsx}\"' 'npm run watch-ts' 'npm run watchify'",
"clean": "rm -rf dist/*"
},
"dependencies": {
"@createjs/easeljs": "^2.0.0-beta.4",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-reconciler": "^0.18.0"
},
"devDependencies": {
"@types/node": "^9.4.7",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.2",
"@types/react-reconciler": "^0.18.0",
"browserify": "^16.2.3",
"chokidar-cli": "^1.2.2",
"parallelshell": "^3.0.2",
"serve": "^10.1.2",
"typescript": "^3.3.3",
"watchify": "^3.11.1"
},
"description": "React - EaselJS bindings with React Reconciler",
"homepage": "https://github.com/loilo-inc/easeljs-react#readme",
"directories": {
"example": "example",
"lib": "lib"
}
}