-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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": "phosphor-layouts",
"version": "0.1.0",
"description": "Phosphor Layout customElements to use in the browser",
"main": "index.js",
"module": "es/index.js",
"style": "phosphor-layout.css",
"typings": "es/index.d.ts",
"scripts": {
"prebuild": "rimraf cjs es phosphor-layout.css phosphor-layout.js phosphor-layout.min.js",
"build": "npm-run-all --parallel build:*",
"build:style": "node-sass style/phosphor-layout.scss --output .",
"build:tsc": "tsc --project tsconfig.build.json",
"build:webpack": "webpack",
"lint": "tslint --project tsconfig.json",
"prepublishOnly": "yarn build",
"test": "karma start",
"test:ci": "yarn test --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LukeSheard/phosphor-webcomponent.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/LukeSheard/phosphor-webcomponent/issues"
},
"homepage": "https://github.com/LukeSheard/phosphor-webcomponent#readme",
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/jasmine": "^2.8.3",
"@types/lodash": "^4.14.91",
"@types/node": "^8.0.54",
"@types/webpack": "^3.8.1",
"jasmine-core": "^2.8.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-typescript": "^3.0.9",
"lodash": "^4.17.4",
"node-sass": "^4.7.2",
"npm-run-all": "^4.1.2",
"prettier": "^1.9.2",
"rimraf": "^2.6.2",
"ts-loader": "^3.2.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"@phosphor/widgets": "^1.5.0"
}
}