forked from atom/etch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.53 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": "etch",
"version": "0.6.0",
"description": "Perform virtual DOM updates based on changes to a data model.",
"main": "dist/index.js",
"scripts": {
"test": "npm run standard && npm run mocha",
"mocha": "devtool --quit --console node_modules/.bin/_mocha --colors --recursive ./test/helpers/register-babel test",
"tdd": "npm run standard && node_modules/.bin/electron-mocha --renderer --interactive --recursive ./test/helpers/register-babel test",
"prepublish": "npm run standard && npm run clean && npm run build",
"standard": "node_modules/.bin/standard --recursive src test && echo Linting passed",
"build": "node_modules/.bin/babel src --out-dir dist",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/atom/etch.git"
},
"keywords": [
"virtual-dom dom view element custom-elements dom-diff atom electron"
],
"author": "Nathan Sobo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atom/etch/issues"
},
"homepage": "https://github.com/atom/etch",
"devDependencies": {
"babel": "^5.0.0",
"babel-eslint": "^4.0.5",
"chai": "^2.0.0",
"devtool": "^1.9.1",
"electron-mocha": "git://github.com/nathansobo/electron-mocha.git#interactive-option",
"electron-prebuilt": "^0.30.1",
"mocha": "^2.1.0",
"standard": "^4.5.4"
},
"dependencies": {
"virtual-dom": "^2.0.1"
},
"standard": {
"parser": "babel-eslint",
"global": [
"describe",
"it",
"expect"
]
}
}