-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 782 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "data-stoar",
"version": "2.2.2",
"description": "Grab all the data attributes from an HTML document, and Stoar them for use",
"main": "lib/index.js",
"repository": "https://github.com/jzeltman/data-stoar",
"scripts": {
"dev": "webpack-dev-server --open",
"compile": "babel --presets es2015,stage-0 -d lib/ src/ -w",
"build" : "babel --presets es2015,stage-0 -d lib/ src/",
"test": "npm-run-all --parallel dev compile"
},
"author": "Ben Westrate + Josh Zeltman",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3",
"npm-run-all": "^4.1.2"
}
}