-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1016 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": "conducer",
"version": "0.0.2",
"description": "Minimal tools for creating rules with conditions using simple reducers.",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:commonjs",
"build:commonjs": "babel src --out-dir dist --ignore __tests__/*",
"test": "tape -r babel-register src/**/__tests__/**/*.js | tap-diff",
"test:watch": "tape-watch -r babel-register src/**/__tests__/**/*.js -p tap-diff",
"clean": "rimraf lib",
"prepublish": "npm run test && npm run clean && npm run build"
},
"keywords": [
"rules"
],
"author": "",
"license": "MIT",
"repository": "choko-org/conducer",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"eslint-config-taller": "^1.0.4",
"rimraf": "^2.5.4",
"tap-diff": "^0.1.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.2",
"tape-watch": "^2.2.3"
}
}