-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "knucklesjs",
"description": "Async robust data management",
"version": "0.0.3",
"authors": [
"Joost Verdoorn",
"Steffan Sluis"
],
"main": "dist/knuckles",
"browser": "dist/knuckles.browser.js",
"files": [
"dist",
"src"
],
"keywords": [
"store",
"xhr",
"async",
"REST",
"localStorage"
],
"licenses": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/steffansluis/knuckles.git"
},
"dependencies": {
"sonicjs": "^0.5.0"
},
"devDependencies": {
"babel-loader": "^6.1.0",
"babel-plugin-transform-async-to-generator": "^6.1.18",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"blue-tape": "^0.1.10",
"coveralls": "^2.11.6",
"faucet": "0.0.1",
"glob": "^6.0.1",
"nyc": "^4.0.1",
"tap": "github:isaacs/node-tap",
"typescript": "^1.8.0-dev.20151115",
"watch": "^0.16.0",
"webpack": "^1.12.6"
},
"scripts": {
"ts": "tsc",
"dist": "tsc && webpack --config webpack.src.config.js",
"test": "tsc && (nyc --require babel-core/register tap -R tap test/*.js); STATUS=$?; if [ $STATUS != 0 ]; then echo -e '\\u0007'; fi; exit $STATUS",
"coverage": "npm test & nyc report --reporter=text-lcov | coveralls",
"watch": "tsc -w & webpack -w --config webpack.src.config.js",
"watch-test": "npm run watch & watch 'npm test' test",
"d": "npm run dist",
"t": "npm run test",
"w": "npm run watch",
"wt": "npm run watch-test"
}
}