-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "dom-tools",
"version": "0.1.1",
"description": "A set of tools for working with the browser's DOM",
"repository": "ssh://[email protected]:amboss-mededu/ui-dom-tools.git",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint lib",
"clean": "rimraf dist",
"build:dist": "webpack --config ./webpack.js",
"build": "npm run clean && npm run build:dist",
"test": "cross-env NODE_ENV=test karma start --single-run",
"test:watch": "cross-env NODE_ENV=test karma start"
},
"author": "Will Shown <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"cross-env": "^3.1.3",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"webpack": "^1.14.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"engines": {
"node": ">=5.x"
}
}