-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.2 KB
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
{
"name": "tp_node_stripe_example",
"version": "1.0.0",
"description": "Example application showing a node/stripe integration with Testing Pays",
"main": "index.js",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon -w . -x npm run start",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register",
"test:all": "npm run test -- ./test --recursive",
"watch:test:all": "nodemon --watch ./ --recursive --exec npm run test:all",
"watch:test": "nodemon --watch ./ --recursive --exec npm run test"
},
"keywords": [],
"author": "The Payment Works",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.9.1",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"semistandard": "^9.1.0",
"supertest": "^2.0.1",
"supertest-as-promised": "^4.0.2"
},
"dependencies": {
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.18.0",
"body-parser": "^1.15.2",
"ejs": "^2.5.2",
"express": "^4.14.0",
"express-partials": "^0.3.0",
"node-sass-middleware": "^0.9.8",
"stripe": "^4.12.0"
},
"babel": {
"presets": [
"node6"
]
},
"standard": {
"globals": [
"Stripe",
"$"
]
}
}