forked from microsoft/wineryjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 808 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
{
"name": "winery",
"version": "0.1.1",
"author": "napajs",
"description": "A framework for experimentation in production",
"keywords": [
"experimentation",
"A/B testing",
"application framework",
"dependency injection",
"continuous modification"
],
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"readme": "./README.md",
"dependencies": {
"napajs": "^0.2.0",
"strip-json-comments": "^2.0.0"
},
"devDependencies": {
"mocha": "^3.5.0",
"typescript": "^2.4.2",
"@types/node": "^8.0.22",
"@types/mocha": "^2.2.41"
},
"scripts": {
"prepare": "tsc -p lib && tsc -p test && tsc -p examples/playground",
"test": "mocha test --recursive"
}
}