-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "dumdum-js",
"version": "0.3.0",
"description": "",
"main": "lib/DumDum.js",
"files": [
"lib/",
"LICENSE"
],
"scripts": {
"test": "mocha-webpack --webpack-config webpack.config.js --require test/setup.js test/*.spec.js",
"watch": "mocha-webpack --webpack-config webpack.config.js --watch --require test/setup.js test/*.spec.js",
"build": "babel lib/DumDum.js --out-file dist/dumdum.js"
},
"standard": {
"ignore": [
"coverage/**",
"node_modules/**",
"bower_components/**"
]
},
"repository": {
"type": "git",
"url": "git://github.com/tormjens/dumdum-js.git"
},
"keywords": [],
"author": "Tor Morten Jensen <tormorten@tormorten.no>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tormjens/dumdum-js/issues"
},
"homepage": "https://github.com/tormjens/dumdum-js",
"devDependencies": {
"MutationObservers": "github:Polymer/MutationObservers",
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"expect": "^21.2.1",
"babel-preset-env": "^1.7.0",
"jsdom": "^11.3.0",
"jsdom-global": "^3.0.2",
"mocha": "^4.0.1",
"mocha-jsdom": "^1.1.0",
"mocha-webpack": "^0.7.0",
"mutationobserver-shim": "^0.3.2",
"sinon": "^5.1.1",
"webpack": "^3.7.1"
},
"dependencies": {}
}