-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "pretur.pipeline",
"version": "0.1.0",
"description": "Monetary calculation pipeline",
"main": "index.js",
"files": [
"*.js",
"*.d.ts",
"typings.json"
],
"scripts": {
"build": "tsc -d typings/main.d.ts src/index.ts --rootDir src --outDir . --module commonjs --removeComments",
"prepublish": "typings install && npm run build",
"ci-test": "npm run test",
"pretest": "tsc",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pretur/pipeline.git"
},
"keywords": [
"pretur",
"money",
"pipeline"
],
"author": "Ali Taheri Moghaddar",
"license": "MIT",
"bugs": {
"url": "https://github.com/pretur/pipeline/issues"
},
"homepage": "https://github.com/pretur/pipeline#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"typescript": "^1.7.5",
"typings": "^0.6.8"
},
"dependencies": {
"bluebird": "^3.3.3",
"esprima": "^2.7.2",
"esprima-walk": "^0.1.0",
"isomorphic-vm": "0.0.1"
}
}