-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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": "cartola",
"version": "0.1.0",
"description": "Dependency Container for universal Services using the Functional Factory Pattern.",
"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 build"
},
"keywords": [
"services",
"dependency injection"
],
"author": "",
"license": "MIT",
"repository": "choko-org/cartola",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^8.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"eslint": "^3.0.1",
"eslint-config-rackt": "^1.1.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"rimraf": "^2.5.4",
"tap-diff": "^0.1.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.2",
"tape-watch": "^2.2.3"
},
"dependencies": {
"babel-preset-env": "^1.6.0"
}
}