-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.79 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
{
"name": "crux-web-components",
"version": "0.0.1",
"description": "An Adaptive Web Components library.",
"author": "Thiago da Rosa de Bustamante <thiago@cruxframework.org>",
"keywords": [
"javascript",
"typescript",
"Web components",
"Adaptive interface"
],
"main": "./dist/crux-webcomponents-lib.js",
"typings": "./dist/crux-webcomponents-lib.d.ts",
"license": "MIT",
"scripts": {
"start": "node_modules/.bin/webpack-dev-server --env.test --content-base ./ --port 8000 --devtool=inline-source-map --debug --define DEVICE=\"'desktop'\"",
"start:phone": "node_modules/.bin/webpack-dev-server --env.test --content-base ./ --port 8000 --devtool=inline-source-map --debug --define DEVICE=\"'phone'\"",
"build": "npm run clean && npm run webpack",
"clean": "rimraf dist",
"lint": "tslint ./src/**/*.ts ./test/**/*.ts",
"format": "tsfmt -r",
"prepublish": "npm run build && npm run doc",
"deploy": "npm version patch && npm publish",
"postversion": "git push origin master",
"pretest": "cross-env NODE_ENV=test npm build && npm run lint",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/wdio ./test/wdio.conf.js",
"doc": "typedoc --out ./doc/ --name 'Crux-WebComponents' --readme ./README.MD --module commonjs --target ES6 --includeDeclarations --excludePrivate --excludeExternals ./src",
"webpack": "npm run webpack:desktop && npm run webpack:phone",
"webpack:phone": "webpack --config webpack.config.js --output-path=dist --define DEVICE=\"'phone'\" --output-filename=crux-components-phone.js",
"webpack:desktop": "webpack --config webpack.config.js --output-path=dist --define DEVICE=\"'desktop'\" --output-filename=crux-components-desktop.js"
},
"dependencies": {
"animate.css-js": "0.0.9"
},
"devDependencies": {
"@types/chai": "^3.5.1",
"@types/fs-extra": "0.0.37",
"@types/mocha": "^2.2.41",
"@types/node": "^4.2.12",
"@types/webdriverio": "^4.8.0",
"chai": "^3.5.0",
"cross-env": "^4.0.0",
"css-loader": "^0.25.0",
"html-loader": "^0.4.5",
"mocha": "^3.4.2",
"rimraf": "^2.6.1",
"source-map-support": "^0.4.14",
"ts-loader": "^2.2.2",
"ts-node": "^3.1.0",
"tslint": "^5.4.3",
"typedoc": "^0.5.10",
"typescript": "^2.4.1",
"typescript-formatter": "^5.2.0",
"wdio-mocha-framework": "^0.5.10",
"wdio-sauce-service": "^0.4.0",
"wdio-spec-reporter": "^0.1.0",
"webdriverio": "^4.8.0",
"webpack": "^2.6.1",
"webpack-closure-compiler": "^2.1.4",
"webpack-dev-server": "^2.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/thiagobustamante/crux-webcomponents.git"
},
"bugs": {
"url": "https://github.com/thiagobustamante/crux-webcomponents/issues"
},
"directories": {
"lib": "dist",
"doc": "doc"
}
}