-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 997 Bytes
/
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
{
"name": "magic-virtual-element",
"version": "2.0.0-rc1",
"repository": "dekujs/magic-virtual-element",
"description": "Build virtual tree elements with magic attributes",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"hihat": "^2.6.1",
"rimraf": "^2.5.0",
"snazzy": "^2.0.1",
"standard": "^5.4.1",
"tap-dev-tool": "^1.3.0",
"tape": "^4.4.0"
},
"dependencies": {
"deku": "~2.0.0-rc",
"classnames": "^2.2.3",
"component-type": "~1.2.0",
"to-style": "^1.3.3"
},
"scripts": {
"clean": "rimraf lib",
"build": "babel index.js --out-dir lib",
"prepublish": "npm run clean && npm run build",
"preversion": "npm run clean && npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"test": "standard index.js && hihat test/index.js -- --debug -t babelify -p tap-dev-tool"
}
}