-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·66 lines (66 loc) · 1.93 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
{
"name": "steamer-kit-library",
"version": "1.0.2",
"description": "steamer starterkit for library development based on rollup and karma",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"scripts": {
"dist": "rollup -c ./tools/rollup.base.js",
"dev": "rollup -c ./tools/rollup.base.js -w",
"start": "npm run dev",
"lint": "eslint src",
"test": "cross-env BABEL_ENV=test NODE_ENV=production KARMA_ENV=karma node ./tools/script.js",
"pretest": "npm run lint && npm run dist",
"travis": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steamerjs/steamer-kit-library.git"
},
"keywords": [
"steamer starterkit",
"rollup",
"karma",
"library"
],
"author": "steamerjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/steamerjs/steamer-kit-library/issues"
},
"homepage": "https://github.com/steamerjs/steamer-kit-library#readme",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"chai": "^4.1.2",
"codecov.io": "^0.1.6",
"coveralls": "^3.0.1",
"cross-env": "^5.1.6",
"eslint": "^4.19.1",
"eslint-config-alloy": "^1.4.2",
"karma": "^2.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^6.0.0",
"karma-sinon-chai": "^1.3.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"mocha": "^5.2.0",
"rollup": "^0.60.1",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-node-resolve": "^3.3.0",
"sinon": "^5.1.1",
"sinon-chai": "^3.1.0"
},
"engines": {
"node": ">=6.4.0"
}
}