-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 877 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
{
"name": "list-split",
"version": "0.1.0",
"description": "toolkit for splitting list & string",
"keywords": [
"split",
"list",
"string"
],
"author": "kdepp <[email protected]>",
"main": "dist/split.js",
"scripts": {
"dev": "webpack-dev-server --inline --hot --config webpack.dev.config.js --port 8384 --content-base example/",
"build": "npm run build:babel",
"build:babel": "babel src --out-dir dist",
"test": "mocha --compilers js:babel-core/register",
"test:watch": "mocha -w --compilers js:babel-core/register"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"webpack": "^1.12.13"
},
"license": "MIT"
}