-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
59 lines (59 loc) · 2.65 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
{
"name": "weavejs",
"version": "0.0.2",
"description": "Application architecture library for building modern web applications",
"main": "./lib/weavejs.js",
"types": "./weave-typings/weavejs-module.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\"",
"clean": "npm run clean:as && npm run clean:ts",
"clean:ts": "rimraf WeaveTSJS/bin/",
"clean:as": "rimraf WeaveASJS/bin/",
"compile-weavejs": "npm run compile-as && npm run compile-astypings && npm run compile-ts && npm run compile-libs && mkdirp lib && node run-ts build",
"compile-refs": "node run-ts main-import-tool -d WeaveTSJS/src/ -x _lib-references.ts,WeaveTSJS/src/libs.ts -f WeaveTSJS/src/_references.ts && npm run compile-librefs",
"compile-librefs": "node run-ts main-import-tool -d WeaveTSJS/typings/ -f WeaveTSJS/src/_lib-references.ts",
"compile-libs": "npm run compile-librefs && tsc -p ./WeaveTSJS/tsconfig-libs.json && node scripts/babel-with-source-maps.js -i WeaveTSJS/bin/es6/libs.js -m WeaveTSJS/bin/es6/libs.js.map -o WeaveTSJS/bin/js/libs.js",
"compile-ts": "npm run compile-refs && tsc -p ./WeaveTSJS/tsconfig.json && mkdirp ./WeaveTSJS/bin/js && node scripts/babel-with-source-maps.js -i WeaveTSJS/bin/es6/weavejs.js -m WeaveTSJS/bin/es6/weavejs.js.map -o WeaveTSJS/bin/js/weavejs.js && cp ./WeaveTSJS/bin/es6/weavejs.d.ts ./weave-typings/",
"compile-astypings": "cp ./weave-typings/as-types.d.ts ./WeaveASJS/typings && as2dts --defs-only ./WeaveASJS/src ./WeaveASJS/typings/src && tsc -d -p ./WeaveASJS/typings/ && cp WeaveASJS/typings/weavejs-core.d.ts ./weave-typings && mv WeaveASJS/typings/*.d.ts ./WeaveTSJS/typings/weave",
"compile-as": "node WeaveASJS/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/WeaveTeam/WeaveJS.git"
},
"keywords": [
"visualization",
"weave"
],
"author": "WeaveTeam <[email protected]>",
"license": "MPL-2.0",
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"combine-source-map": "^0.7.2",
"dataurl": "^0.1.0",
"flexjs": "0.7.0",
"fs-extra": "^0.30.0",
"glob": "^7.0.5",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"tsd": "^0.6.5",
"tsort": "^0.0.1",
"as2dts": "^0.2.3",
"babel-cli": "^6.4.5",
"concat-with-sourcemaps": "^1.0.4",
"rimraf": "^2.5.3",
"typescript": "1.8.10"
},
"dependencies": {
"classnames": "^2.2.3",
"jszip": "^3.0.0",
"lodash": "^3.10.1",
"moment": "^2.11.2",
"pixi.js": "^4.0.0",
"react": "0.14.7",
"react-addons-update": "0.14.7",
"react-dom": "0.14.7"
}
}