-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "modulor",
"version": "0.0.1",
"description": "",
"main": "build/modulor.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --no-cache",
"test:karma": "./node_modules/karma/bin/karma start",
"build": "node node_modules/babel-cli/bin/babel src --out-dir build",
"build:watch": "npm run build -- --watch",
"doc": "jsdoc2md src/modulor.js > doc/modulor.md & jsdoc2md src/router.js > doc/router.md & jsdoc2md src/delegate.js > doc/delegate.md & jsdoc2md src/dom_utils.js > doc/dom_utils.md"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"custom-elements-jest": "github:nogizhopaboroda/custom-elements",
"document-register-element": "^1.7.0",
"jest": "^21.2.1",
"jsdoc-to-markdown": "^3.0.2",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chai-spies": "^0.1.4",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^1.2.4",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"pretty-data": "^0.40.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"webpack": "^1.14.0"
},
"dependencies": {
"path-to-regexp": "^1.7.0"
},
"jest": {
"testURL": "http://localhost",
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}