forked from metal/metal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"private": true,
"scripts": {
"compile": "gulp build:cjs",
"format": "gulp format",
"lint": "gulp lint",
"test": "gulp test",
"test:coverage": "gulp test:coverage",
"test:coverage:open": "gulp test:coverage:open",
"test:watch": "gulp test:watch"
},
"devDependencies": {
"babel-plugin-istanbul": "^1.0.3",
"babel-preset-es2015": "^6.0.0",
"babel-preset-metal-jsx": "^0.0.2",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"eslint-plugin-react": "^6.8.0",
"gulp": "^3.8.11",
"gulp-babel": "^6.1.2",
"gulp-metal": "^1.0.0",
"gulp-replace": "^0.5.4",
"jsdom": "^9.9.1",
"jsdom-global": "^2.1.1",
"karma": "^1.1.0",
"karma-browserify": "^5.0.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.0",
"karma-mocha": "^1.0.1",
"karma-sinon": "^1.0.5",
"karma-source-map-support": "^1.1.0",
"lerna": "2.0.0-beta.30",
"metal-tools-soy": "^2.4.0",
"metal-useragent": "^2.1.2",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"watchify": "^3.7.0"
},
"nyc": {
"exclude": [
"packages/metal-incremental-dom/src/incremental-dom.js",
"packages/metal-incremental-dom/lib/incremental-dom.js",
"packages/metal-jsx/src/iDOMHelpers.js",
"packages/metal*/test/**/*.js",
"test-utils.js"
]
}
}