-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
86 lines (86 loc) · 2.47 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@haiku/core",
"version": "5.1.1",
"description": "Haiku Core is a JavaScript library for building user interfaces",
"homepage": "https://www.haikuforteams.com",
"directories": {
"lib": "lib",
"dom": "dom",
"components": "components",
"dist": "dist"
},
"keywords": [
"animation",
"motion",
"component",
"web",
"browser",
"svg",
"rendering",
"engine"
],
"repository": "https://github.com/HaikuTeam/core",
"main": "index.js",
"scripts": {
"lint": "tslint --exclude 'src/vendor/**' -p tsconfig.all.json -t stylish",
"lint-report": "yarn lint -t checkstyle -o checkstyle-result.xml",
"fix": "yarn lint --fix",
"ts": "cross-env NODE_ENV=test ts-node -r tsconfig-paths/register -P tsconfig.all.json",
"test": "yarn ts ./node_modules/.bin/tape 'test/**/*.test.ts' | tap-spec",
"test-report": "nyc yarn ts ./node_modules/.bin/tape 'test/**/*.test.ts' > test-result.tap",
"compile": "tsc",
"develop": "tsc --watch",
"bundle": "yarn compile && yarn ts ./scripts/bundle.ts",
"demos": "yarn ts ./scripts/demos.ts"
},
"authors": [
"Matthew Trost <[email protected]>",
"Zack Brown <[email protected]>",
"Taylor Poe <[email protected]>",
"Sasha Joseph <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@angular/core": "^6.0.9",
"async": "^2.5.0",
"chokidar": "^1.7.0",
"cross-env": "^5.1.6",
"depcheck": "^0.6.7",
"express": "4.14.1",
"filesize": "3.5.10",
"fs-extra": "^4.0.2",
"haiku-testing": "5.1.1",
"handlebars": "^4.0.8",
"istanbul-reporter-cobertura-haiku": "^1.0.2",
"jsdom": "^11.1.0",
"leaked-handles": "^5.2.0",
"nodemon": "1.11.0",
"nyc": "^13.0.1",
"opn": "^5.3.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "^4.1.1",
"rollup": "^0.53.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify-es": "^0.0.1",
"rxjs": "^6.3.3",
"tap-spec": "^4.1.2",
"tape": "^4.9.0",
"ts-loader": "^4.4.2",
"ts-node": "^6.1.0",
"tsconfig-paths": "^3.3.2",
"tslint": "^5.11.0",
"tslint-config-haiku": "^1.0.16",
"tslint-no-circular-imports": "^0.5.0",
"typescript": "^3.0.3",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8"
},
"peerDependencies": {
"@angular/core": "^6.0.9",
"react": "^16.0.0 || ^15.4.2",
"react-dom": "^16.0.0 || ^15.4.2"
}
}