-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@socialkardia/processor",
"version": "1.0.0",
"description": "The transformation service layer for socialkardia",
"main": "tmp/source/index.js",
"scripts": {
"postinstall": "npm run build",
"start": "npm-run-all --parallel watch:lint watch:test",
"build": "babel --ignore '**/test.js' './source/' -d './transpiled/source/'",
"lint": "eslint './source/'",
"test": "mocha --compilers js:babel-register './source/**/test.js'",
"watch": "npm-run-all --parallel watch:build watch:lint watch:test",
"watch:build": "chokidar './source/' --initial --command 'npm run build --silent'",
"watch:lint": "chokidar './source/' --initial --command 'npm run lint --silent'",
"watch:test": "chokidar './source/' --initial --command 'npm run test --silent'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socialkardia/processor.js.git"
},
"author": "Kurtis Rainbolt-Greene (@krainboltgreene) <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/socialkardia/processor.js/issues"
},
"homepage": "https://github.com/socialkardia/processor.js#readme",
"engines": {
"node": "^6",
"npm": "^3"
},
"devDependencies": {
"babel-eslint": "^6",
"babel": "^6",
"babel-cli": "^6",
"babel-core": "^6",
"babel-plugin-transform-es2015-destructuring": "^6",
"babel-plugin-transform-es2015-modules-commonjs": "^6",
"babel-plugin-transform-exponentiation-operator": "^6",
"babel-plugin-transform-export-extensions": "^6",
"babel-plugin-transform-object-rest-spread": "^6",
"chai": "^3",
"chakram": "^1",
"chance": "^1",
"chokidar-cli": "^1",
"eslint": "^2",
"eslint-plugin-babel": "^3",
"eslint-plugin-immutable": "^1",
"eslint-plugin-import": "^1",
"eslint-plugin-mocha": "^3",
"eslint-plugin-node": "^1",
"greenkeeper": "^2",
"mocha": "^2",
"npm": "^3",
"npm-run-all": "^2",
"npm-check-updates": "^2"
},
"dependencies": {
"ramda": "0.21.0"
}
}