-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "rollerskate",
"version": "1.1.0",
"description": "A rolled up accordion library.",
"repository": "n370/rollerskate",
"main": "./dist/accordion.js",
"scripts": {
"pretest": "npm run build:test",
"test": "tap --bail test/**/*.spec.js",
"prepare": "npm run build:js",
"start": "npm-run-all --serial test watch:test",
"build:test": "babel src/**/*.js --out-dir test",
"watch:test": "onchange \"src/**/*.js\" -w -- npm test",
"build:js": "rollup -c",
"watch:js": "npm run build:js -- -w"
},
"author": "Dylson Valente Neto <[email protected]>",
"license": "MIT",
"babel": {
"sourceMaps": "inline",
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-env": "^1.2.2",
"jsdom": "^9.12.0",
"npm-run-all": "^4.0.2",
"onchange": "^3.2.1",
"rollup": "^0.41.6",
"rollup-watch": "^3.2.2",
"tap": "^10.3.0"
}
}