-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.59 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
{
"name": "supermodels.js",
"version": "0.2.1",
"description": "Turn plain old javascript objects into observable, traversable, validatable and composable supermodels.",
"keywords": [
"Object modelling",
"validation",
"observer",
"Object.observe",
"composable",
"schema",
"mvc",
"pubsub"
],
"main": "index.js",
"scripts": {
"test1": "browserify -t coverify ./tape --bare | node | coverify",
"lint": "npm run standard",
"test": "npm run lint && npm run tape",
"tape": "tape ./test/*.js",
"build:tape": "browserify -d test/*.js > test/bundle/index.js",
"build": "npm run test && npm run build:js && npm run build:js-min",
"build:examples": "browserify ./test/examples/affordability-assessment/index.js > ./test/examples/affordability-assessment/dist/build.js -d",
"build:js": "browserify index.js --standalone supermodels > ./dist/supermodels.js -d",
"build:js-min": "browserify index.js --standalone supermodels | uglifyjs --screw-ie8 --mangle > ./dist/supermodels.min.js",
"standard": "standard ./lib/*.js ./test/*.js",
"watch:file": "watchify test/mixed.js -o bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/davidjamesstone/supermodels.js.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidjamesstone/supermodels.js/issues"
},
"homepage": "https://github.com/davidjamesstone/supermodels.js",
"devDependencies": {
"browserify": "^8.1.0",
"tape": "^4.0.0",
"coverify": "^1.3.2",
"standard": "^5.1.0",
"watchify": "^3.2.1"
}
}